Hello!

2.5.5 is too old and it has hibernate-core 5.4.32.Final in its 
dependencies, this version doesn't support any new versions of H2. You need 
to check version of Hibernate ORM actually used by your application and 
upgrade it to 5.6.15.Final or 6.1.7.Final if necessary.

You also need to check SQL data types of columns with UUID values if you 
have them, because Hibernate ORM can incorrectly choose some wrong data 
type such as BINARY(255) for them, in historic versions of H2 it was 
acceptable, because it was incorrectly implemented as BINARY VARYING(255), 
but in new versions of H2 these data types have different 
standard-compliant implementations. The best data type for H2 is UUID, but 
BINARY(16) can also be used. Attempts to use BINARY(255) cause various 
problems, such as https://hibernate.atlassian.net/browse/HHH-15373

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to h2-database+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/h2-database/861c9172-d9c7-4cfb-8724-5b822d320fa9n%40googlegroups.com.

Reply via email to