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(
170170 }
171171 }
172172
173+ //Used by Hibernate Reactive
174+ protected PreparedStatementGroup getBatchedPreparedStatementGroup () {
175+ return this .batch != null ? this .batch .getStatementGroup () : null ;
176+ }
177+
173178 //Used by Hibernate Reactive
174179 protected PreparedStatementGroup getNonBatchedStatementGroup () {
175180 return nonBatchedStatementGroup ;
176181 }
177182
183+ //Used by Hibernate Reactive
184+ protected List <SelfExecutingUpdateOperation > getSelfExecutingMutations () {
185+ return selfExecutingMutations ;
186+ }
187+
178188 @ Override
179189 public JdbcValueBindings getJdbcValueBindings () {
180190 return valueBindings ;
You can’t perform that action at this time.
0 commit comments