-
Hi everyone! @mickroll and I are currently migrating our Quarkus + BlazePersistence + Hibernate App to Quarkus 3/Hibernate 6 and we have a strange issue with our keyset pagination queries. We don't see any "group by" clauses anymore in the statements that are logged by Hibernate. It's interesting that our current productive Quarkus2/Hibernate 5 app is already using the same BlazePersistence version 1.6.9 so it seems it's either an issue in the blaze integration module for Hibernate 6 or in Hibernate 6 itself? Any hints? Thanks! PS: Sorry for the low level of details. I'm a bit in a rush but I can try to add more details later - please let me know what you need. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Um, I found the fix: we have to change In that Q3 migration branch we also migrated our strongly typed id classes (which we call DomainIdentifers, e.g. At this point I have two questions/remarks:
|
Beta Was this translation helpful? Give feedback.
Hi Falko,
No it's not expected. The
EmbeddableSplittingVisitor
should actually take care of this, but maybe there is a bug. Would very much appreciate a reproducer :)Since I don't see the full query that you are working with, I'm having a hard time understanding where this could go wrong. The user defined g…