HHH-18027 Clear expansions NonSelectQueryPlan.executeUpdate call
This commit is contained in:
parent
e8d396ccbd
commit
fcc7216911
|
@ -663,7 +663,12 @@ public class QuerySqmImpl<R>
|
|||
}
|
||||
|
||||
protected int doExecuteUpdate() {
|
||||
return resolveNonSelectQueryPlan().executeUpdate( this );
|
||||
try {
|
||||
return resolveNonSelectQueryPlan().executeUpdate( this );
|
||||
}
|
||||
finally {
|
||||
domainParameterXref.clearExpansions();
|
||||
}
|
||||
}
|
||||
|
||||
private NonSelectQueryPlan resolveNonSelectQueryPlan() {
|
||||
|
|
Loading…
Reference in New Issue