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
When clearing collections on both sides of a bidirectional relationship within the same transaction without an intermediate persistAndFlush(), relationship entities are not properly removed from the database.
after creating three projects and connecting them (pe1 -> pe2 -> pe3) I use the following code to disconnect pe2 from pe1 and pe3:
ProjectEntityproject = ProjectEntity.findById(pe2Id);
project.outgoingRelationships.clear();
// without the following line, it doesnt work// project.persistAndFlush();project.incomingRelationships.clear();
project.persist();
Expected behavior
Clearing collections on both sides of a bidirectional relationship within the same transaction without an intermediate persistAndFlush(), should properly remove entities from the database.
Actual behavior
It seems that only for the collection that was cleared last (incomingRelations) the orphanRemoval works as expected.
Describe the bug
When clearing collections on both sides of a bidirectional relationship within the same transaction without an intermediate persistAndFlush(), relationship entities are not properly removed from the database.
ProjectEntity has
after creating three projects and connecting them (pe1 -> pe2 -> pe3) I use the following code to disconnect pe2 from pe1 and pe3:
Expected behavior
Clearing collections on both sides of a bidirectional relationship within the same transaction without an intermediate persistAndFlush(), should properly remove entities from the database.
Actual behavior
It seems that only for the collection that was cleared last (incomingRelations) the orphanRemoval works as expected.
How to Reproduce?
I created a repo to reproduce the bug: https://github.com/yankydoo/repro-hibernate-extended-many-to-many-orphan-removal/tree/main
Execute the only test to reproduce it
Output of
uname -a
orver
No response
Output of
java -version
Java version: 21.0.6, vendor: Amazon.com Inc., runtime: /Users/.../Library/Java/JavaVirtualMachines/corretto-21.0.6/Contents/Home
Quarkus version or git rev
3.19.4
Build tool (ie. output of
mvnw --version
orgradlew --version
)Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937
Additional information
No response
The text was updated successfully, but these errors were encountered: