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 fd8a17a commit 0c23857Copy full SHA for 0c23857
src/main/kotlin/org/mybatis/dynamic/sql/util/kotlin/elements/SqlTableExtensions.kt
@@ -33,7 +33,7 @@ fun <T : Any> SqlTable.column(
33
jdbcType: JDBCType? = null,
34
typeHandler: String? = null,
35
renderingStrategy: RenderingStrategy? = null,
36
- parameterTypeConverter: ((T?) -> Any?)? = { it },
+ parameterTypeConverter: ((T?) -> Any?) = { it },
37
javaType: KClass<T>? = null
38
): SqlColumn<T> = SqlColumn.Builder<T>().run {
39
withTable(this@column)
0 commit comments