HHH-17600 - Properly setting next index if ListIndexBase annotation is present

This commit is contained in:
Cedomir Igaly 2023-12-06 10:41:23 +01:00 committed by Christian Beikov
parent 8e749cbf21
commit c958b429f2
1 changed files with 2 additions and 1 deletions

View File

@ -226,7 +226,8 @@ public class OneToManyPersister extends AbstractCollectionPersister {
final JdbcValueBindings jdbcValueBindings = mutationExecutor.getJdbcValueBindings();
try {
int nextIndex = resetIndex ? 0 : getSize( key, session );
int nextIndex = ( resetIndex ? 0 : getSize( key, session ) ) +
Math.max( getAttributeMapping().getIndexMetadata().getListIndexBase(), 0 );
while ( entries.hasNext() ) {
final Object entry = entries.next();