Skip to content

Commit

Permalink
[hibernate#1648] Rename class: Fix typo in ReactiveUpdateExecutionDel…
Browse files Browse the repository at this point in the history
…egate
  • Loading branch information
DavideD committed Jun 1, 2023
1 parent 8ab4ac8 commit 6eea720
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ protected ReactiveExecutionDelegate resolveDelegate(DomainQueryExecutionContext
}

@Override
protected ReactiveUpdateExcutionDelegate buildExecutionDelegate(
protected ReactiveUpdateExecutionDelegate buildExecutionDelegate(
MultiTableSqmMutationConverter sqmConverter,
TemporaryTable idTable,
AfterUseAction afterUseAction,
Expand All @@ -93,7 +93,7 @@ protected ReactiveUpdateExcutionDelegate buildExecutionDelegate(
Map<SqmParameter<?>, List<List<JdbcParameter>>> parameterResolutions,
Map<SqmParameter<?>, MappingModelExpressible<?>> paramTypeResolutions,
DomainQueryExecutionContext executionContext) {
return new ReactiveUpdateExcutionDelegate(
return new ReactiveUpdateExecutionDelegate(
sqmConverter,
idTable,
afterUseAction,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@
import static org.hibernate.reactive.query.sqm.mutation.internal.temptable.ReactiveExecuteWithTemporaryTableHelper.saveMatchingIdsIntoIdTable;
import static org.hibernate.reactive.util.impl.CompletionStages.voidFuture;

public class ReactiveUpdateExcutionDelegate extends UpdateExecutionDelegate implements ReactiveTableBasedUpdateHandler.ReactiveExecutionDelegate {
public class ReactiveUpdateExecutionDelegate extends UpdateExecutionDelegate implements ReactiveTableBasedUpdateHandler.ReactiveExecutionDelegate {

private static final Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() );

public ReactiveUpdateExcutionDelegate(
public ReactiveUpdateExecutionDelegate(
MultiTableSqmMutationConverter sqmConverter,
TemporaryTable idTable,
AfterUseAction afterUseAction,
Expand Down Expand Up @@ -214,13 +214,13 @@ private CompletionStage<Integer> executeUpdate(QuerySpec idTableSubQuery, Execut
return StandardReactiveJdbcMutationExecutor.INSTANCE
.executeReactive(
jdbcUpdate,
getJdbcParameterBindings(),
executionContext.getSession()
getJdbcParameterBindings(),
executionContext.getSession()
.getJdbcCoordinator()
.getStatementPreparer()
::prepareStatement,
ReactiveUpdateExcutionDelegate::doNothing,
executionContext
ReactiveUpdateExecutionDelegate::doNothing,
executionContext
);
}

Expand Down Expand Up @@ -294,7 +294,7 @@ private CompletionStage<Integer> executeInsert(
.getJdbcCoordinator()
.getStatementPreparer()
::prepareStatement,
ReactiveUpdateExcutionDelegate::doNothing,
ReactiveUpdateExecutionDelegate::doNothing,
executionContext
);
}
Expand Down

0 comments on commit 6eea720

Please sign in to comment.