Package org.hibernate.sql.ast.internal
Class TableGroupJoinHelper
- java.lang.Object
-
- org.hibernate.sql.ast.internal.TableGroupJoinHelper
-
public class TableGroupJoinHelper extends Object
-
-
Constructor Summary
Constructors Constructor Description TableGroupJoinHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TableGroupJoin
determineJoinForPredicateApply(TableGroupJoin mainTableGroupJoin)
Determine theTableGroupJoin
to which a customON
clause predicate should be applied to.
-
-
-
Method Detail
-
determineJoinForPredicateApply
public static TableGroupJoin determineJoinForPredicateApply(TableGroupJoin mainTableGroupJoin)
Determine theTableGroupJoin
to which a customON
clause predicate should be applied to. This is supposed to be called right after construction of aTableGroupJoin
. This should also be called after aSqmPredicate
is translated to aPredicate
, because that translation might cause nested joins to be added to the table group of the join.
-
-