We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67d5f0f commit 50d7cb6Copy full SHA for 50d7cb6
src/main/kotlin/org/mybatis/dynamic/sql/util/kotlin/KotlinUpdateBuilder.kt
@@ -50,9 +50,9 @@ class KotlinUpdateBuilder(private val dsl: UpdateDSL<UpdateModel>) :
50
set(column).equalToStringConstant(constant)
51
}
52
53
- infix fun equalTo(value: T): Unit = equalTo { value }
+ infix fun equalTo(value: T & Any): Unit = equalTo { value }
54
55
- infix fun equalTo(value: () -> T): Unit =
+ infix fun equalTo(value: () -> T & Any): Unit =
56
applyToDsl {
57
set(column).equalTo(value)
58
0 commit comments