Package org.apache.calcite.rel.rules
Class ReduceExpressionsRule.CalcReduceExpressionsRule
java.lang.Object
org.apache.calcite.plan.RelOptRule
org.apache.calcite.plan.RelRule<C>
org.apache.calcite.rel.rules.ReduceExpressionsRule<ReduceExpressionsRule.CalcReduceExpressionsRule.CalcReduceExpressionsRuleConfig>
org.apache.calcite.rel.rules.ReduceExpressionsRule.CalcReduceExpressionsRule
- All Implemented Interfaces:
SubstitutionRule,TransformationRule
- Enclosing class:
ReduceExpressionsRule<C extends ReduceExpressionsRule.Config>
public static class ReduceExpressionsRule.CalcReduceExpressionsRule
extends ReduceExpressionsRule<ReduceExpressionsRule.CalcReduceExpressionsRule.CalcReduceExpressionsRuleConfig>
Rule that reduces constants inside a
Calc.- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceRule configuration.Nested classes/interfaces inherited from class org.apache.calcite.rel.rules.ReduceExpressionsRule
ReduceExpressionsRule.CalcReduceExpressionsRule, ReduceExpressionsRule.CaseShuttle, ReduceExpressionsRule.Config, ReduceExpressionsRule.FilterReduceExpressionsRule, ReduceExpressionsRule.JoinReduceExpressionsRule, ReduceExpressionsRule.ProjectReduceExpressionsRule, ReduceExpressionsRule.ReducibleExprLocator, ReduceExpressionsRule.RexReplacer, ReduceExpressionsRule.WindowReduceExpressionsRuleNested classes/interfaces inherited from class org.apache.calcite.plan.RelRule
RelRule.Done, RelRule.MatchHandler<R extends RelOptRule>, RelRule.OperandBuilder, RelRule.OperandDetailBuilder<R extends RelNode>, RelRule.OperandTransformNested classes/interfaces inherited from class org.apache.calcite.plan.RelOptRule
RelOptRule.ConverterRelOptRuleOperand -
Field Summary
Fields inherited from class org.apache.calcite.rel.rules.ReduceExpressionsRule
EXCLUSION_PATTERNFields inherited from class org.apache.calcite.plan.RelOptRule
description, operands, relBuilderFactory -
Constructor Summary
ConstructorsModifierConstructorDescriptionCalcReduceExpressionsRule(Class<? extends Calc> calcClass, boolean matchNullability, RelBuilderFactory relBuilderFactory) Deprecated.CalcReduceExpressionsRule(Class<? extends Calc> calcClass, RelBuilderFactory relBuilderFactory) Deprecated.protectedCalcReduceExpressionsRule(ReduceExpressionsRule.CalcReduceExpressionsRule.CalcReduceExpressionsRuleConfig config) Creates a CalcReduceExpressionsRule. -
Method Summary
Modifier and TypeMethodDescriptionprotected RelNodecreateEmptyRelOrEquivalent(RelOptRuleCall call, Calc input) For static schema systems, a filter that is always false or null can be replaced by a values operator that produces no rows, as the schema information can just be taken from the input Rel.voidonMatch(RelOptRuleCall call) Receives notification about a rule match.Methods inherited from class org.apache.calcite.rel.rules.ReduceExpressionsRule
findReducibleExps, predicateConstants, pushPredicateIntoCase, reduceExpressions, reduceExpressions, reduceExpressions, reduceExpressionsInternal, substituteMethods inherited from class org.apache.calcite.plan.RelOptRule
any, convert, convert, convert, convert, convertList, convertOperand, convertOperand, equals, equals, getOperand, getOperands, getOutConvention, getOutTrait, hashCode, matches, none, operand, operand, operand, operand, operand, operandJ, operandJ, some, toString, unorderedMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.apache.calcite.rel.rules.SubstitutionRule
autoPruneOld
-
Constructor Details
-
CalcReduceExpressionsRule
protected CalcReduceExpressionsRule(ReduceExpressionsRule.CalcReduceExpressionsRule.CalcReduceExpressionsRuleConfig config) Creates a CalcReduceExpressionsRule. -
CalcReduceExpressionsRule
@Deprecated public CalcReduceExpressionsRule(Class<? extends Calc> calcClass, RelBuilderFactory relBuilderFactory) Deprecated. -
CalcReduceExpressionsRule
@Deprecated public CalcReduceExpressionsRule(Class<? extends Calc> calcClass, boolean matchNullability, RelBuilderFactory relBuilderFactory) Deprecated.
-
-
Method Details
-
onMatch
Description copied from class:RelOptRuleReceives notification about a rule match. At the time that this method is called,call.relsholds the set of relational expressions which match the operands to the rule;call.rels[0]is the root expression.Typically a rule would check that the nodes are valid matches, creates a new expression, then calls back
RelOptRuleCall.transformTo(org.apache.calcite.rel.RelNode, java.util.Map<org.apache.calcite.rel.RelNode, org.apache.calcite.rel.RelNode>, org.apache.calcite.plan.RelHintsPropagator)to register the expression.- Specified by:
onMatchin classRelOptRule- Parameters:
call- Rule call- See Also:
-
createEmptyRelOrEquivalent
For static schema systems, a filter that is always false or null can be replaced by a values operator that produces no rows, as the schema information can just be taken from the input Rel. In dynamic schema environments, the filter might have an unknown input type, in these cases they must define a system specific alternative to a Values operator, such as inserting a limit 0 instead of a filter on top of the original input.The default implementation of this method is to call
RelBuilder.empty(), which for the static schema will be optimized to an Immutable.Config.of()Values.- Parameters:
input- rel to replace, assumes caller has already determined equivalence to Values operation for 0 records or a false filter.- Returns:
- equivalent but less expensive replacement rel
-