-
Notifications
You must be signed in to change notification settings - Fork 92
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
Upgrade Hibernate ORM to 6.5.0.CR2 #1880
Conversation
mutationGroup.forEachOperation( (position, jdbcOperation) -> { | ||
if ( id == null ) { | ||
assert entityPersister().getIdentityInsertDelegate() != null; | ||
} | ||
else { | ||
final EntityTableMapping tableDetails = (EntityTableMapping) jdbcOperation.getTableDetails(); | ||
breakDownJdbcValue( id, session, jdbcValueBindings, tableDetails ); | ||
} | ||
} ); |
Check notice
Code scanning / CodeQL
Deprecated method or constructor invocation Note
MutationOperationGroup.forEachOperation
|
||
default CompletionStage<GeneratedValues> performReactiveNonBatchedOperations( | ||
Object modelReference, | ||
ValuesAnalysis valuesAnalysis, |
Check notice
Code scanning / CodeQL
Useless parameter Note
@@ -141,7 +141,8 @@ | |||
} | |||
final JdbcValueBindings jdbcValueBindings = mutationExecutor.getJdbcValueBindings(); | |||
bindPartitionColumnValueBindings( loadedState, session, jdbcValueBindings ); | |||
applyId( id, rowId, mutationExecutor, getStaticDeleteGroup(), session ); | |||
applyId( id, rowId, mutationExecutor, getStaticMutationOperationGroup(), session ); | |||
String[] identifierColumnNames = entityPersister().getIdentifierColumnNames(); |
Check notice
Code scanning / CodeQL
Unread local variable Note
Fix #1857
Fix #1878
Fix #1872
Fix #1879