Skip to content

Commit

Permalink
UUID decoding broken with MariaDB driver 3.0.3 #1467
Browse files Browse the repository at this point in the history
  • Loading branch information
Tapac committed Apr 10, 2022
1 parent 8bc2889 commit a4991e4
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -199,6 +199,8 @@ class EntityIDColumnType<T : Comparable<T>>(val idColumn: Column<T>) : ColumnTyp
idColumn.table as IdTable<T>
)

override fun readObject(rs: ResultSet, index: Int): Any? = idColumn.columnType.readObject(rs, index)

override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
Expand Down

0 comments on commit a4991e4

Please sign in to comment.