Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,21 @@ public MutationExecutorStandard(
}
}

//Used by Hibernate Reactive
protected PreparedStatementGroup getBatchedPreparedStatementGroup() {
return this.batch != null ? this.batch.getStatementGroup() : null;
}

//Used by Hibernate Reactive
protected PreparedStatementGroup getNonBatchedStatementGroup() {
return nonBatchedStatementGroup;
}

//Used by Hibernate Reactive
protected List<SelfExecutingUpdateOperation> getSelfExecutingMutations() {
return selfExecutingMutations;
}

@Override
public JdbcValueBindings getJdbcValueBindings() {
return valueBindings;
Expand Down