-
-
Notifications
You must be signed in to change notification settings - Fork 102
Fix parameters bind #2415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Fix parameters bind #2415
Conversation
The latest Hibernate Gradle plugin requires at list JVM 22. This downgrade won't affect the released artifact.
And realign the Hibernate Gradle plugin to the same version
@@ -527,313 +544,313 @@ | |||
// covariance | |||
|
|||
@Override | |||
public ReactiveQuerySqmImpl<R> applyGraph(RootGraph graph, GraphSemantic semantic) { | |||
public ReactiveSqmQueryImpl<R> applyGraph(RootGraph graph, GraphSemantic semantic) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods Note
applyGraph
super.setHibernateLockMode( lockMode ); | ||
return this; | ||
} | ||
|
||
@Override | ||
public ReactiveQuerySqmImpl<R> setTimeout(int timeout) { | ||
public ReactiveSqmQueryImpl<R> setTimeout(int timeout) { |
Check notice
Code scanning / CodeQL
Confusing overloading of methods Note
SqmQueryImpl.setTimeout
return new MultiTableHandlerBuildResult( multiTableHandler, firstJdbcParameterBindings.get() ); | ||
} | ||
|
||
public MultiTableHandler buildHandler( |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
GlobalTemporaryTableMutationStrategy.buildHandler
@Override | ||
public CompletionStage<Integer> reactiveExecuteDelete( | ||
SqmDeleteStatement<?> sqmDeleteStatement, | ||
public MultiTableHandler buildHandler( |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
GlobalTemporaryTableMutationStrategy.buildHandler
|
||
@Override | ||
public CompletionStage<Integer> reactiveExecuteUpdate( | ||
public MultiTableHandler buildHandler( |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
LocalTemporaryTableMutationStrategy.buildHandler
} | ||
|
||
@Override | ||
public CompletionStage<Integer> reactiveExecuteDelete( | ||
public MultiTableHandler buildHandler( |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
LocalTemporaryTableMutationStrategy.buildHandler
@Override | ||
public CompletionStage<Integer> reactiveExecuteUpdate( | ||
SqmUpdateStatement<?> sqmUpdateStatement, | ||
public MultiTableHandler buildHandler( |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
PersistentTableMutationStrategy.buildHandler
@Override | ||
public CompletionStage<Integer> reactiveExecuteDelete( | ||
SqmDeleteStatement<?> sqmDeleteStatement, | ||
public MultiTableHandler buildHandler( |
Check notice
Code scanning / CodeQL
Missing Override annotation Note
Testing the change for #2414