Package org.apache.calcite.rel.rules
Interface JoinPushThroughJoinRule.Config
- All Superinterfaces:
RelRule.Config
- Enclosing class:
JoinPushThroughJoinRule
Rule configuration.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final JoinPushThroughJoinRule.Config
static final JoinPushThroughJoinRule.Config
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
isRight()
Whether to push on the right.default JoinPushThroughJoinRule
toRule()
Creates a rule that uses this configuration.default JoinPushThroughJoinRule.Config
withOperandFor
(Class<? extends Join> joinClass) Defines an operand tree for the given classes.withRight
(boolean right) SetsisRight()
.Methods inherited from interface org.apache.calcite.plan.RelRule.Config
as, description, operandSupplier, relBuilderFactory, withDescription, withOperandSupplier, withRelBuilderFactory
-
Field Details
-
RIGHT
-
LEFT
-
-
Method Details
-
toRule
Description copied from interface:RelRule.Config
Creates a rule that uses this configuration. Sub-class must override.- Specified by:
toRule
in interfaceRelRule.Config
-
isRight
@Default default boolean isRight()Whether to push on the right. If false, push to the left. -
withRight
SetsisRight()
. -
withOperandFor
Defines an operand tree for the given classes.
-