HHH-8750 : Move load plan implementations from spi to internal
This commit is contained in:
parent
850578c1e8
commit
cb8d6c4e06
|
@ -150,7 +150,10 @@ public class QuerySpaceTreePrinter {
|
|||
+ StringHelper.join( ", ", collectionReferenceAliases.getCollectionColumnAliases().getSuffixedKeyAliases() )
|
||||
+ "}"
|
||||
);
|
||||
final EntityAliases elementAliases = collectionReferenceAliases.getEntityElementAliases().getColumnAliases();
|
||||
final EntityAliases elementAliases =
|
||||
collectionReferenceAliases.getEntityElementAliases() == null ?
|
||||
null :
|
||||
collectionReferenceAliases.getEntityElementAliases().getColumnAliases();
|
||||
if ( elementAliases != null ) {
|
||||
printWriter.println(
|
||||
TreePrinterHelper.INSTANCE.generateNodePrefix( depth + detailDepthOffset )
|
||||
|
|
Loading…
Reference in New Issue