Package org.apache.calcite.rel.rules
Interface ProjectCorrelateTransposeRule.Config
- All Superinterfaces:
RelRule.Config
- Enclosing class:
ProjectCorrelateTransposeRule
@Immutable(singleton=false)
public static interface ProjectCorrelateTransposeRule.Config
extends RelRule.Config
Rule configuration.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionDefines when an expression should not be pushed.default ProjectCorrelateTransposeRule
toRule()
Creates a rule that uses this configuration.withOperandFor
(Class<? extends Project> projectClass, Class<? extends Correlate> correlateClass) Defines an operand tree for the given classes.SetspreserveExprCondition()
.Methods inherited from interface org.apache.calcite.plan.RelRule.Config
as, description, operandSupplier, relBuilderFactory, withDescription, withOperandSupplier, withRelBuilderFactory
-
Field Details
-
DEFAULT
-
-
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
-
preserveExprCondition
PushProjector.ExprCondition preserveExprCondition()Defines when an expression should not be pushed. -
withPreserveExprCondition
ProjectCorrelateTransposeRule.Config withPreserveExprCondition(PushProjector.ExprCondition condition) SetspreserveExprCondition()
. -
withOperandFor
default ProjectCorrelateTransposeRule.Config withOperandFor(Class<? extends Project> projectClass, Class<? extends Correlate> correlateClass) Defines an operand tree for the given classes.
-