mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-16 16:15:06 +00:00
HHH-18027 Clear expansions NonSelectQueryPlan.executeUpdate call
This commit is contained in:
parent
e8d396ccbd
commit
fcc7216911
@ -663,7 +663,12 @@ protected void verifyUpdate() {
|
||||
}
|
||||
|
||||
protected int doExecuteUpdate() {
|
||||
return resolveNonSelectQueryPlan().executeUpdate( this );
|
||||
try {
|
||||
return resolveNonSelectQueryPlan().executeUpdate( this );
|
||||
}
|
||||
finally {
|
||||
domainParameterXref.clearExpansions();
|
||||
}
|
||||
}
|
||||
|
||||
private NonSelectQueryPlan resolveNonSelectQueryPlan() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user