You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but I got no results, then I added the .also { println(it) } statement to see the query and I got the following: permissions.guild IS NULL and permissions.role IS NULL and permissions.type = [B@2e877764.
I think the ByteArray just isn't being serialized, and I honestly don't know how to deal with it.
Kotlin 1.3.21
Exposed 0.12.1
MySQL Connector 5.1.6
MySQL 5.7.23
The text was updated successfully, but these errors were encountered:
@NathanPB, first of all in exposed binary column type will be represented as VARBINARY not BIT, so your case with BIT(1) is similar to boolean` column type.
But there is indeed a problem with representing and comparing byteArray values which will be fixed in the next release (0.13.1)
Hello everyone, I'm not sure if this is a bug or just me being dumb again.
Well, I have the following table:
... and I need to select the entries where
type is 1
.I'm trying
but I got no results, then I added the
.also { println(it) }
statement to see the query and I got the following:permissions.guild IS NULL and permissions.role IS NULL and permissions.type = [B@2e877764
.I think the ByteArray just isn't being serialized, and I honestly don't know how to deal with it.
Kotlin 1.3.21
Exposed 0.12.1
MySQL Connector 5.1.6
MySQL 5.7.23
The text was updated successfully, but these errors were encountered: