Expand description
ExtractEquijoinPredicate identifies equality join (equijoin) predicates
Structsยง
- Extract
Equijoin Predicate - Optimizer that splits conjunctive join predicates into equijoin predicates and (other) filter predicates.
Functionsยง
- split_
eq_ ๐and_ noneq_ join_ predicate - Splits an ANDed filter expression into equijoin predicates and remaining filters. Returns all equijoin predicates and the remaining filters combined with AND.
- split_
is_ ๐not_ distinct_ from_ and_ other_ join_ predicate - See
split_eq_and_noneq_join_predicateโs comment for the idea. This function is splitting outis not distinct fromexpressions instead of equal exprs. Theis not distinct fromexprs will be return asEquijoinPredicate. - split_
op_ ๐and_ other_ join_ predicates - See comments in
split_eq_and_noneq_join_predicatefor details.
Type Aliasesยง
- Equijoin
Predicate ๐