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
We're currently migrating a project to hibernate6 and ran into an issue. Our database server is PostgreSQL and we're using the io.hypersistence:hypersistence-utils-hibernate-63 package to get json/jsonb column support in Hibernate.
It logs [liquibase.ext] Found column info jsonb, but the parseType is an object where all fields are null, causing the exception.
hibernateColumn contains a value of type BasicValue which in turn has a resolution that contains the JsonBinaryType stuff, but Liquibase doesn't seem to pick up on it. The typeName field is not going to be set for such values.
The text was updated successfully, but these errors were encountered:
We're currently migrating a project to hibernate6 and ran into an issue. Our database server is PostgreSQL and we're using the
io.hypersistence:hypersistence-utils-hibernate-63
package to getjson
/jsonb
column support in Hibernate.A simplified example looks like this:
When running
diffChangelog
, this results in:It logs
[liquibase.ext] Found column info jsonb
, but theparseType
is an object where all fields are null, causing the exception.hibernateColumn
contains a value of typeBasicValue
which in turn has a resolution that contains theJsonBinaryType
stuff, but Liquibase doesn't seem to pick up on it. ThetypeName
field is not going to be set for such values.The text was updated successfully, but these errors were encountered: