HHH-15720 Using multiple select in a multiselect generates java.lang.ArrayIndexOutOfBoundsException
This commit is contained in:
parent
551043a4de
commit
4adafc2757
|
@ -8258,7 +8258,15 @@ public abstract class BaseSqmToSqlAstConverter<T extends Statement> extends Base
|
||||||
offset = countIndividualSelections( ( (SqmDynamicInstantiation<?>) selectableNode ).getArguments() ) - 1;
|
offset = countIndividualSelections( ( (SqmDynamicInstantiation<?>) selectableNode ).getArguments() ) - 1;
|
||||||
}
|
}
|
||||||
else if ( selectableNode instanceof SqmJpaCompoundSelection<?> ) {
|
else if ( selectableNode instanceof SqmJpaCompoundSelection<?> ) {
|
||||||
offset += ( (SqmJpaCompoundSelection<?>) selectableNode ).getSelectionItems().size() - 1;
|
for ( SqmSelectableNode<?> node : ( (SqmJpaCompoundSelection<?>) selectableNode ).getSelectionItems() ) {
|
||||||
|
if ( node instanceof SqmDynamicInstantiation<?> ) {
|
||||||
|
offset += countIndividualSelections( ( (SqmDynamicInstantiation<?>) node ).getArguments() ) ;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
offset += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
offset -= 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return offset + selections.size();
|
return offset + selections.size();
|
||||||
|
|
Loading…
Reference in New Issue