Package org.hibernate.sql.ast.tree.from
Class LazyTableGroup
- java.lang.Object
-
- org.hibernate.sql.ast.tree.from.DelegatingTableGroup
-
- org.hibernate.sql.ast.tree.from.LazyTableGroup
-
- All Implemented Interfaces:
DomainResultProducer,SqmPathInterpretation,SqlSelectionProducer,Expression,ColumnReferenceQualifier,TableGroup,SqlAstNode
public class LazyTableGroup extends DelegatingTableGroup
The purpose of this table group is to defer creating the actual table group until it is really needed. If it is not needed, we can safely skip rendering it. This is useful for ToOneAttributeMapping and EntityCollectionPart, where we need a table group for the association, but aren't sure which columns are needed yet. Deferring initialization enables getting away with fewer joins in case only foreign key columns are used.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceLazyTableGroup.ParentTableGroupUseChecker
-
Constructor Summary
Constructors Constructor Description LazyTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, boolean fetched, Supplier<TableGroup> tableGroupSupplier, LazyTableGroup.ParentTableGroupUseChecker parentTableGroupUseChecker, TableGroupProducer tableGroupProducer, String sourceAlias, SqlAliasBase sqlAliasBase, SessionFactoryImplementor sessionFactory, TableGroup parentTableGroup)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddNestedTableGroupJoin(TableGroupJoin join)A nested table group join is a join against a table group, that is ensured to be joined against the primary table reference and table reference joins in isolation, prior to doing other table group joins e.g.voidaddTableGroupJoin(TableGroupJoin join)voidapplyAffectedTableNames(Consumer<String> nameCollector)booleancanUseInnerJoins()ModelPartgetExpressionType()The type for this expressionStringgetGroupAlias()If we want to use CTE for TableGroup rendering we will need to know the alias we can use for the groupTableGroupProducergetModelPart()NavigablePathgetNavigablePath()List<TableGroupJoin>getNestedTableGroupJoins()StringgetSourceAlias()TableGroupgetTableGroup()List<TableGroupJoin>getTableGroupJoins()TableReferencegetTableReference(NavigablePath navigablePath, String tableExpression, boolean resolve)Returns the table reference for the table expression, or null if not found.TableReferencegetTableReference(NavigablePath navigablePath, ValuedModelPart modelPart, String tableExpression, boolean resolve)List<TableReferenceJoin>getTableReferenceJoins()TableGroupgetUnderlyingTableGroup()booleanisFetched()booleanisInitialized()If this is a lazy table group, it may report that it is not initialized, which would also mean that a join referring to this table group should not be rendered.booleanisLateral()booleanisRealTableGroup()voidsetTableGroupInitializerCallback(Consumer<TableGroup> tableGroupConsumer)voidvisitNestedTableGroupJoins(Consumer<TableGroupJoin> consumer)voidvisitTableGroupJoins(Consumer<TableGroupJoin> consumer)-
Methods inherited from class org.hibernate.sql.ast.tree.from.DelegatingTableGroup
accept, applySqlSelections, createDomainResult, createSqlSelection, createSqlSelection, getColumnReference, getPrimaryTableReference, getSqlExpression, prependTableGroupJoin
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.sql.ast.tree.from.ColumnReferenceQualifier
getTableReference, getTableReference, resolveTableReference, resolveTableReference, resolveTableReference
-
Methods inherited from interface org.hibernate.sql.ast.tree.expression.Expression
createDomainResultSqlSelection, createDomainResultSqlSelection
-
Methods inherited from interface org.hibernate.sql.ast.tree.from.TableGroup
findCompatibleJoin, findCompatibleJoinedGroup, findTableGroupJoin, hasRealJoins
-
-
-
-
Constructor Detail
-
LazyTableGroup
public LazyTableGroup(boolean canUseInnerJoins, NavigablePath navigablePath, boolean fetched, Supplier<TableGroup> tableGroupSupplier, LazyTableGroup.ParentTableGroupUseChecker parentTableGroupUseChecker, TableGroupProducer tableGroupProducer, String sourceAlias, SqlAliasBase sqlAliasBase, SessionFactoryImplementor sessionFactory, TableGroup parentTableGroup)
-
-
Method Detail
-
isInitialized
public boolean isInitialized()
Description copied from interface:TableGroupIf this is a lazy table group, it may report that it is not initialized, which would also mean that a join referring to this table group should not be rendered.- Specified by:
isInitializedin interfaceTableGroup- Overrides:
isInitializedin classDelegatingTableGroup
-
getUnderlyingTableGroup
public TableGroup getUnderlyingTableGroup()
-
getTableGroup
public TableGroup getTableGroup()
- Specified by:
getTableGroupin classDelegatingTableGroup
-
setTableGroupInitializerCallback
public void setTableGroupInitializerCallback(Consumer<TableGroup> tableGroupConsumer)
-
applyAffectedTableNames
public void applyAffectedTableNames(Consumer<String> nameCollector)
- Specified by:
applyAffectedTableNamesin interfaceTableGroup- Overrides:
applyAffectedTableNamesin classDelegatingTableGroup
-
getTableReferenceJoins
public List<TableReferenceJoin> getTableReferenceJoins()
- Specified by:
getTableReferenceJoinsin interfaceTableGroup- Overrides:
getTableReferenceJoinsin classDelegatingTableGroup
-
getTableGroupJoins
public List<TableGroupJoin> getTableGroupJoins()
- Specified by:
getTableGroupJoinsin interfaceTableGroup- Overrides:
getTableGroupJoinsin classDelegatingTableGroup
-
getNestedTableGroupJoins
public List<TableGroupJoin> getNestedTableGroupJoins()
- Specified by:
getNestedTableGroupJoinsin interfaceTableGroup- Overrides:
getNestedTableGroupJoinsin classDelegatingTableGroup
-
addTableGroupJoin
public void addTableGroupJoin(TableGroupJoin join)
- Specified by:
addTableGroupJoinin interfaceTableGroup- Overrides:
addTableGroupJoinin classDelegatingTableGroup
-
addNestedTableGroupJoin
public void addNestedTableGroupJoin(TableGroupJoin join)
Description copied from interface:TableGroupA nested table group join is a join against a table group, that is ensured to be joined against the primary table reference and table reference joins in isolation, prior to doing other table group joins e.g.select * from entity1 e left join ( collection_table c1 join association a on a.id = c1.target_id ) on c1.entity_id = e.id and c1.key = 1is modeled asTableGroup( primaryTableReference = TableReference(entity1, e), tableGroupJoins = [ TableGroupJoin( TableGroup( primaryTableReference = TableReference(collection_table, c1), nestedTableGroupJoins = [ TableGroupJoin( TableGroup( primaryTableReference = TableReference(association, a) ) ) ] ) ) ] )This is necessary to correctly retain the cardinality of an HQL join like e.g.from Entity1 e left join e.collectionAssociation c on key(c) = 1- Specified by:
addNestedTableGroupJoinin interfaceTableGroup- Overrides:
addNestedTableGroupJoinin classDelegatingTableGroup
-
visitTableGroupJoins
public void visitTableGroupJoins(Consumer<TableGroupJoin> consumer)
- Specified by:
visitTableGroupJoinsin interfaceTableGroup- Overrides:
visitTableGroupJoinsin classDelegatingTableGroup
-
visitNestedTableGroupJoins
public void visitNestedTableGroupJoins(Consumer<TableGroupJoin> consumer)
- Specified by:
visitNestedTableGroupJoinsin interfaceTableGroup- Overrides:
visitNestedTableGroupJoinsin classDelegatingTableGroup
-
canUseInnerJoins
public boolean canUseInnerJoins()
- Specified by:
canUseInnerJoinsin interfaceTableGroup- Overrides:
canUseInnerJoinsin classDelegatingTableGroup
-
getNavigablePath
public NavigablePath getNavigablePath()
- Specified by:
getNavigablePathin interfaceSqmPathInterpretation- Specified by:
getNavigablePathin interfaceTableGroup- Overrides:
getNavigablePathin classDelegatingTableGroup
-
getGroupAlias
public String getGroupAlias()
Description copied from interface:TableGroupIf we want to use CTE for TableGroup rendering we will need to know the alias we can use for the group- Specified by:
getGroupAliasin interfaceTableGroup- Overrides:
getGroupAliasin classDelegatingTableGroup
-
getModelPart
public TableGroupProducer getModelPart()
- Specified by:
getModelPartin interfaceTableGroup- Overrides:
getModelPartin classDelegatingTableGroup
-
getExpressionType
public ModelPart getExpressionType()
Description copied from interface:ExpressionThe type for this expression- Specified by:
getExpressionTypein interfaceExpression- Specified by:
getExpressionTypein interfaceSqmPathInterpretation- Overrides:
getExpressionTypein classDelegatingTableGroup
-
getSourceAlias
public String getSourceAlias()
- Specified by:
getSourceAliasin interfaceTableGroup- Overrides:
getSourceAliasin classDelegatingTableGroup
-
isRealTableGroup
public boolean isRealTableGroup()
- Specified by:
isRealTableGroupin interfaceTableGroup- Overrides:
isRealTableGroupin classDelegatingTableGroup
-
isFetched
public boolean isFetched()
- Specified by:
isFetchedin interfaceTableGroup- Overrides:
isFetchedin classDelegatingTableGroup
-
isLateral
public boolean isLateral()
- Specified by:
isLateralin interfaceTableGroup- Overrides:
isLateralin classDelegatingTableGroup
-
getTableReference
public TableReference getTableReference(NavigablePath navigablePath, String tableExpression, boolean resolve)
Description copied from interface:ColumnReferenceQualifierReturns the table reference for the table expression, or null if not found.- Specified by:
getTableReferencein interfaceColumnReferenceQualifier- Overrides:
getTableReferencein classDelegatingTableGroup- Parameters:
navigablePath- The path for which to look up the table reference, may be nulltableExpression- The table expression for which to look up the table referenceresolve- Whether to potentially create table reference joins for this table group
-
getTableReference
public TableReference getTableReference(NavigablePath navigablePath, ValuedModelPart modelPart, String tableExpression, boolean resolve)
- Specified by:
getTableReferencein interfaceColumnReferenceQualifier- Overrides:
getTableReferencein classDelegatingTableGroup
-
-