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
this is not possible anymore in Hibernate 6, as PostgreSQLCITextType does not implement BindableType. I am not sure if this is intended or a consequence of it being a ImmutableType (as all the types that inherit from MutableType are BindableType's) ... and what would be the right approach to use the PostgreSQLCITextType in this case.
The text was updated successfully, but these errors were encountered:
@flozano To get that, you will have to change the PostgreSQLCITextType so that instead of extending ImmutableType, it will extend the DescriptorImmutableType. Looking forward to your Pull Request that fixes the issue.
Actually it was easier for me to change the code slightly to use citext_eq in the SQL, as this is a native query. I may attempt to contribute the PR later anyway :)
When using Hibernate 5, I used to use
this is not possible anymore in Hibernate 6, as PostgreSQLCITextType does not implement BindableType. I am not sure if this is intended or a consequence of it being a ImmutableType (as all the types that inherit from MutableType are BindableType's) ... and what would be the right approach to use the PostgreSQLCITextType in this case.
The text was updated successfully, but these errors were encountered: