mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-17 00:24:57 +00:00
HHH-17415 Improved check for entity valued path expansion in subqueries
This commit is contained in:
parent
397c730c69
commit
4e524f67c5
@ -380,7 +380,7 @@ private static boolean selectionContains(Selection<?> selection, NavigablePath p
|
||||
final SqmPath<?> sqmPath = (SqmPath<?>) selection;
|
||||
// Expansion is needed if the table group is null, i.e. we're in a top level query where EVPs are always
|
||||
// expanded to all columns, or if the selection is on the same table (lhs) as the group by expression ...
|
||||
return ( tableGroupPath == null || sqmPath.getLhs().getNavigablePath().equals( tableGroupPath ) )
|
||||
return ( tableGroupPath == null || sqmPath.getLhs() != null && sqmPath.getLhs().getNavigablePath().equals( tableGroupPath ) )
|
||||
// ... and if the entity valued path is selected or any of its columns are
|
||||
&& path.isParentOrEqual( sqmPath.getNavigablePath() );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user