We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7566d8 commit 4e1be36Copy full SHA for 4e1be36
hibernate-core/src/main/java/org/hibernate/query/sqm/internal/QuerySqmImpl.java
@@ -701,7 +701,12 @@ protected void verifyUpdate() {
701
}
702
703
protected int doExecuteUpdate() {
704
- return resolveNonSelectQueryPlan().executeUpdate( this );
+ try {
705
+ return resolveNonSelectQueryPlan().executeUpdate( this );
706
+ }
707
+ finally {
708
+ domainParameterXref.clearExpansions();
709
710
711
712
private NonSelectQueryPlan resolveNonSelectQueryPlan() {
0 commit comments