Skip to content

Commit a515763

Browse files
committed
Rework multi-table handling and non-select query plan code to allow caching and help Hibernate Reactive
1 parent 249b444 commit a515763

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

hibernate-core/src/main/java/org/hibernate/query/sqm/internal/AbstractMultiTableMutationQueryPlan.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ public int executeUpdate(DomainQueryExecutionContext context) {
4343
return interpretation.handler().execute( interpretation.jdbcParameterBindings(), context );
4444
}
4545

46+
// For Hibernate Reactive
47+
protected S getStatement() {
48+
return statement;
49+
}
50+
4651
// For Hibernate Reactive
4752
protected Interpretation getInterpretation(DomainQueryExecutionContext context) {
4853
Interpretation builtInterpretation = null;

0 commit comments

Comments
 (0)