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 new code is called from inside RSQLJPAPredicateConverter.ResolveExpression when calling: return ResolvedExpression.ofPath(path.as(String.class), String.class);
Migrating from hibernate 6.5.x to 6.6.x makes every cast of JSONB to text disapear and we just get postgresql errors (since jsonb is compared to varchar)
I came down to this commit in hibernate: hibernate/hibernate-orm@6a1581c
And especially this modification: hibernate/hibernate-orm@6a1581c#diff-7c30e62b623cc38a1c262664a4f0413f511d4d117b87be21c11e3f607983c090R101
This new code is called from inside
RSQLJPAPredicateConverter.ResolveExpression
when calling:return ResolvedExpression.ofPath(path.as(String.class), String.class);
In spring debug logs we can see
With version 6.5.x of hibernate it was:
Maybe it is an hibernate issue or maybe this lib should adapt to the new code of hibernate?! Any clue maybe?
The text was updated successfully, but these errors were encountered: