dave08
10/15/2023, 11:53 AM@KomapperColumn(alternateType = ClobString::class)
doesn't seem to support the like
infix in queries...String
, and the field is a mysql Text
field, there's no error, it just returns an empty string... could that be?ClobString
should derive from CharSequence by value
?like
function for it...Toshihiro Nakamura
10/15/2023, 1:02 PMpackage org.komapper.core.type
@JvmInline
value class ClobString(val value: String) : CharSequence by value
dave08
10/15/2023, 1:03 PMToshihiro Nakamura
10/15/2023, 1:06 PMdave08
10/15/2023, 1:14 PM