Interface FlinkFilterJoinRule.Config
- All Superinterfaces:
org.apache.calcite.plan.RelRule.Config
- All Known Subinterfaces:
FlinkFilterJoinRule.FlinkFilterIntoJoinRule.FlinkFilterIntoJoinRuleConfig,FlinkFilterJoinRule.FlinkJoinConditionPushRule.FlinkFilterJoinRuleConfig
- All Known Implementing Classes:
ImmutableFlinkFilterIntoJoinRuleConfig,ImmutableFlinkFilterJoinRuleConfig
- Enclosing class:
- FlinkFilterJoinRule<C extends FlinkFilterJoinRule.Config>
public static interface FlinkFilterJoinRule.Config
extends org.apache.calcite.plan.RelRule.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(FlinkFilterJoinRule.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().
-