-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when running HQL queries spanning multiple tables in Hibernate Reactive #15834
Labels
area/hibernate-reactive
Hibernate Reactive
area/persistence
OBSOLETE, DO NOT USE
kind/bug
Something isn't working
Milestone
Comments
quarkus-bot
bot
added
area/hibernate-reactive
Hibernate Reactive
area/persistence
OBSOLETE, DO NOT USE
labels
Mar 18, 2021
/cc @Sanne, @gavinking |
I'm already preparing a fix |
DavideD
added a commit
to DavideD/quarkus
that referenced
this issue
Mar 18, 2021
DavideD
added a commit
to DavideD/quarkus
that referenced
this issue
Mar 18, 2021
with Hibernate Reactive
DavideD
added a commit
to DavideD/quarkus
that referenced
this issue
Mar 18, 2021
with Hibernate Reactive
PR is ready: #15835 |
Sanne
added a commit
to DavideD/quarkus
that referenced
this issue
Mar 18, 2021
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Mar 23, 2021
…e Reactive (cherry picked from commit 49a846c)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Mar 23, 2021
with Hibernate Reactive (cherry picked from commit f7c9452)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Mar 23, 2021
(cherry picked from commit 5a43e18)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/hibernate-reactive
Hibernate Reactive
area/persistence
OBSOLETE, DO NOT USE
kind/bug
Something isn't working
Describe the bug
It happens, for example, when using
IngheritanceType.JOINED
and an update/delete HQL query is executed on the parent entity.At the moment, this exceptions is thrown:
It happens because we don't set
optionsBuilder.applyMultiTableBulkIdStrategy( new ReactiveBulkIdStrategy( metadata ) )
when we create the session factory.
The text was updated successfully, but these errors were encountered: