public class SortUnionTransposeRule extends RelOptRule
| Modifier and Type | Field and Description |
|---|---|
static SortUnionTransposeRule |
INSTANCE
Rule instance for Union implementation that does not preserve the
ordering of its inputs.
|
static SortUnionTransposeRule |
MATCH_NULL_FETCH
Rule instance for Union implementation that preserves the ordering
of its inputs.
|
private boolean |
matchNullFetch
Whether to match a Sort whose
Sort.fetch is null. |
description, operands, relBuilderFactory| Modifier | Constructor and Description |
|---|---|
private |
SortUnionTransposeRule(boolean matchNullFetch) |
|
SortUnionTransposeRule(Class<? extends Sort> sortClass,
Class<? extends Union> unionClass,
boolean matchNullFetch,
RelBuilderFactory relBuilderFactory,
String description)
Creates a SortUnionTransposeRule.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(RelOptRuleCall call)
Returns whether this rule could possibly match the given operands.
|
void |
onMatch(RelOptRuleCall call)
Receives notification about a rule match.
|
any, convert, convert, convertList, convertOperand, equals, equals, getOperand, getOperands, getOutConvention, getOutTrait, hashCode, none, operand, operand, operand, operand, operand, some, toString, unorderedpublic static final SortUnionTransposeRule INSTANCE
Sort.fetch is null.public static final SortUnionTransposeRule MATCH_NULL_FETCH
private final boolean matchNullFetch
Sort.fetch is null. Generally
this only makes sense if the Union preserves order (and merges).public boolean matches(RelOptRuleCall call)
RelOptRuleThis method is an opportunity to apply side-conditions to a rule. The
RelOptPlanner calls this method after matching all operands of
the rule, and before calling RelOptRule.onMatch(RelOptRuleCall).
In implementations of RelOptPlanner which may queue up a
matched RelOptRuleCall for a long time before calling
RelOptRule.onMatch(RelOptRuleCall), this method is beneficial because it
allows the planner to discard rules earlier in the process.
The default implementation of this method returns true.
It is acceptable for any implementation of this method to give a false
positives, that is, to say that the rule matches the operands but have
RelOptRule.onMatch(RelOptRuleCall) subsequently not generate any
successors.
The following script is useful to identify rules which commonly produce no successors. You should override this method for these rules:
awk ' /Apply rule/ {rule=$4; ruleCount[rule]++;} /generated 0 successors/ {ruleMiss[rule]++;} END { printf "%-30s %s %s\n", "Rule", "Fire", "Miss"; for (i in ruleCount) { printf "%-30s %5d %5d\n", i, ruleCount[i], ruleMiss[i]; } } ' FarragoTrace.log
matches in class RelOptRulecall - Rule call which has been determined to match all operands of
this rulepublic void onMatch(RelOptRuleCall call)
RelOptRulecall.rels holds 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>) to
register the expression.
onMatch in class RelOptRulecall - Rule callRelOptRule.matches(RelOptRuleCall)Copyright © 2012–2018 The Apache Software Foundation. All rights reserved.