Package org.apache.calcite.rel.rules
Interface FilterJoinRule.Config
- All Superinterfaces:
RelRule.Config
- All Known Subinterfaces:
FilterJoinRule.FilterIntoJoinRule.FilterIntoJoinRuleConfig,FilterJoinRule.JoinConditionPushRule.JoinConditionPushRuleConfig
- Enclosing class:
FilterJoinRule<C extends FilterJoinRule.Config>
Rule configuration.
-
Method Summary
Modifier and TypeMethodDescriptionPredicate that returns whether a filter is valid in the ON clause of a join for this particular kind of join.default booleanisSmart()Whether to try to strengthen join-type, default false.withPredicate(FilterJoinRule.Predicate predicate) SetsgetPredicate()()}.withSmart(boolean smart) SetsisSmart().Methods inherited from interface org.apache.calcite.plan.RelRule.Config
as, description, operandSupplier, relBuilderFactory, toRule, withDescription, withOperandSupplier, withRelBuilderFactory
-
Method Details
-
isSmart
@Default default boolean isSmart()Whether to try to strengthen join-type, default false. -
withSmart
SetsisSmart(). -
getPredicate
Predicate that returns whether a filter is valid in the ON clause of a join for this particular kind of join. If not, Calcite will push it back to above the join. -
withPredicate
SetsgetPredicate()()}.
-