File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
hibernate-core/src/main/java/org/hibernate/engine/jdbc/mutation/internal Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -170,11 +170,21 @@ public MutationExecutorStandard(
170
170
}
171
171
}
172
172
173
+ //Used by Hibernate Reactive
174
+ protected PreparedStatementGroup getBatchedPreparedStatementGroup () {
175
+ return this .batch != null ? this .batch .getStatementGroup () : null ;
176
+ }
177
+
173
178
//Used by Hibernate Reactive
174
179
protected PreparedStatementGroup getNonBatchedStatementGroup () {
175
180
return nonBatchedStatementGroup ;
176
181
}
177
182
183
+ //Used by Hibernate Reactive
184
+ protected List <SelfExecutingUpdateOperation > getSelfExecutingMutations () {
185
+ return selfExecutingMutations ;
186
+ }
187
+
178
188
@ Override
179
189
public JdbcValueBindings getJdbcValueBindings () {
180
190
return valueBindings ;
You can’t perform that action at this time.
0 commit comments