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
Issue with jsonb[] (array of JsonB) type in Postgres Sql. Note that this is not an array of objects in valid json or jsonb type, like '[{'k1':'v1'},{'k2':'v2'}]'
This is its own type - a postgres array of JSONB types, literally declared as follows: {"{'k1':'v1'}"}
Currently the Hibernate Types' Json doesn't handle this jsonb[], regardless if it is declared as an array on the Entity definition or like List < CUSTOMSERIALIZABLETYPE >
The text was updated successfully, but these errors were encountered:
Issue with jsonb[] (array of JsonB) type in Postgres Sql. Note that this is not an array of objects in valid json or jsonb type, like '[{'k1':'v1'},{'k2':'v2'}]'
This is its own type - a postgres array of JSONB types, literally declared as follows: {"{'k1':'v1'}"}
Currently the Hibernate Types' Json doesn't handle this jsonb[], regardless if it is declared as an array on the Entity definition or like List < CUSTOMSERIALIZABLETYPE >
The text was updated successfully, but these errors were encountered: