File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
hibernate-reactive-core/src/main/java/org/hibernate/reactive/engine/jdbc/mutation/internal Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
package org .hibernate .reactive .engine .jdbc .mutation .internal ;
7
7
8
- import org .hibernate .engine .jdbc .mutation .MutationExecutor ;
8
+ import org .hibernate .engine .jdbc .mutation .OperationResultChecker ;
9
+ import org .hibernate .engine .jdbc .mutation .TableInclusionChecker ;
9
10
import org .hibernate .engine .jdbc .mutation .internal .MutationExecutorPostInsert ;
10
11
import org .hibernate .engine .spi .SharedSessionContractImplementor ;
12
+ import org .hibernate .reactive .engine .jdbc .env .internal .ReactiveMutationExecutor ;
11
13
import org .hibernate .sql .model .MutationOperationGroup ;
14
+ import org .hibernate .sql .model .ValuesAnalysis ;
12
15
13
- public class ReactiveMutationExecutorPostInsert extends MutationExecutorPostInsert implements MutationExecutor {
16
+ public class ReactiveMutationExecutorPostInsert extends MutationExecutorPostInsert implements ReactiveMutationExecutor {
14
17
15
18
public ReactiveMutationExecutorPostInsert (
16
19
MutationOperationGroup mutationOperationGroup ,
17
20
SharedSessionContractImplementor session ) {
18
21
super ( mutationOperationGroup , session );
19
22
}
23
+
24
+ public Object execute (
25
+ Object modelReference ,
26
+ ValuesAnalysis valuesAnalysis ,
27
+ TableInclusionChecker inclusionChecker ,
28
+ OperationResultChecker resultChecker ,
29
+ SharedSessionContractImplementor session ) {
30
+ throw LOG .nonReactiveMethodCall ( "executeReactive" );
31
+ }
20
32
}
You can’t perform that action at this time.
0 commit comments