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 d1d121e commit b3bd01aCopy full SHA for b3bd01a
hibernate-core/src/main/java/org/hibernate/engine/jdbc/mutation/internal/MutationExecutorStandard.java
@@ -170,11 +170,21 @@ public MutationExecutorStandard(
170
}
171
172
173
+ //Used by Hibernate Reactive
174
+ protected PreparedStatementGroup getBatchedPreparedStatementGroup() {
175
+ return this.batch != null ? this.batch.getStatementGroup() : null;
176
+ }
177
+
178
//Used by Hibernate Reactive
179
protected PreparedStatementGroup getNonBatchedStatementGroup() {
180
return nonBatchedStatementGroup;
181
182
183
184
+ protected List<SelfExecutingUpdateOperation> getSelfExecutingMutations() {
185
+ return selfExecutingMutations;
186
187
188
@Override
189
public JdbcValueBindings getJdbcValueBindings() {
190
return valueBindings;
0 commit comments