|
57 | 57 | import static org.hibernate.reactive.query.sqm.mutation.internal.temptable.ReactiveExecuteWithTemporaryTableHelper.saveMatchingIdsIntoIdTable; |
58 | 58 | import static org.hibernate.reactive.util.impl.CompletionStages.voidFuture; |
59 | 59 |
|
60 | | -public class ReactiveUpdateExcutionDelegate extends UpdateExecutionDelegate implements ReactiveTableBasedUpdateHandler.ReactiveExecutionDelegate { |
| 60 | +public class ReactiveUpdateExecutionDelegate extends UpdateExecutionDelegate implements ReactiveTableBasedUpdateHandler.ReactiveExecutionDelegate { |
61 | 61 |
|
62 | 62 | private static final Log LOG = LoggerFactory.make( Log.class, MethodHandles.lookup() ); |
63 | 63 |
|
64 | | - public ReactiveUpdateExcutionDelegate( |
| 64 | + public ReactiveUpdateExecutionDelegate( |
65 | 65 | MultiTableSqmMutationConverter sqmConverter, |
66 | 66 | TemporaryTable idTable, |
67 | 67 | AfterUseAction afterUseAction, |
@@ -214,13 +214,13 @@ private CompletionStage<Integer> executeUpdate(QuerySpec idTableSubQuery, Execut |
214 | 214 | return StandardReactiveJdbcMutationExecutor.INSTANCE |
215 | 215 | .executeReactive( |
216 | 216 | jdbcUpdate, |
217 | | - getJdbcParameterBindings(), |
218 | | - executionContext.getSession() |
| 217 | + getJdbcParameterBindings(), |
| 218 | + executionContext.getSession() |
219 | 219 | .getJdbcCoordinator() |
220 | 220 | .getStatementPreparer() |
221 | 221 | ::prepareStatement, |
222 | | - ReactiveUpdateExcutionDelegate::doNothing, |
223 | | - executionContext |
| 222 | + ReactiveUpdateExecutionDelegate::doNothing, |
| 223 | + executionContext |
224 | 224 | ); |
225 | 225 | } |
226 | 226 |
|
@@ -294,7 +294,7 @@ private CompletionStage<Integer> executeInsert( |
294 | 294 | .getJdbcCoordinator() |
295 | 295 | .getStatementPreparer() |
296 | 296 | ::prepareStatement, |
297 | | - ReactiveUpdateExcutionDelegate::doNothing, |
| 297 | + ReactiveUpdateExecutionDelegate::doNothing, |
298 | 298 | executionContext |
299 | 299 | ); |
300 | 300 | } |
|
0 commit comments