Package org.apache.calcite.rel.rules
Interface AggregateProjectPullUpConstantsRule.Config
- All Superinterfaces:
RelRule.Config
- Enclosing class:
AggregateProjectPullUpConstantsRule
@Immutable
public static interface AggregateProjectPullUpConstantsRule.Config
extends RelRule.Config
Rule configuration.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault RelRule.OperandTransform
Creates the operands for the rule instance.toRule()
Creates a rule that uses this configuration.withOperandFor
(Class<? extends Aggregate> aggregateClass, Class<? extends RelNode> inputClass) Defines an operand tree for the given classes.Methods inherited from interface org.apache.calcite.plan.RelRule.Config
as, description, 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
-
operandSupplier
Description copied from interface:RelRule.Config
Creates the operands for the rule instance.- Specified by:
operandSupplier
in interfaceRelRule.Config
-
withOperandFor
default AggregateProjectPullUpConstantsRule.Config withOperandFor(Class<? extends Aggregate> aggregateClass, Class<? extends RelNode> inputClass) Defines an operand tree for the given classes.- Parameters:
aggregateClass
- Aggregate classinputClass
- Input class, such asLogicalProject
-