@Value.Enclosing public class IntersectToDistinctRule extends RelRule<IntersectToDistinctRule.Config> implements TransformationRule
Intersect
(all = false)
into a group of operators composed of
Union,
Aggregate, etc.
Rewrite: (GB-Union All-GB)-GB-UDTF (on all attributes)
Query: R1 Intersect All R2
R3 = GB(R1 on all attributes, count(*) as c)
union all
GB(R2 on all attributes, count(*) as c)
R4 = GB(R3 on all attributes, count(c) as cnt, min(c) as m)
Note that we do not need min(c) in intersect distinct.
R5 = Filter(cnt == #branch)
If it is intersect all then
R6 = UDTF (R5) which will explode the tuples based on min(c)
R7 = Project(R6 on all attributes)
Else
R6 = Proj(R5 on all attributes)
| Modifier and Type | Class and Description |
|---|---|
static interface |
IntersectToDistinctRule.Config
Rule configuration.
|
RelRule.Done, RelRule.MatchHandler<R extends RelOptRule>, RelRule.OperandBuilder, RelRule.OperandDetailBuilder<R extends RelNode>, RelRule.OperandTransformRelOptRule.ConverterRelOptRuleOperanddescription, operands, relBuilderFactory| Modifier | Constructor and Description |
|---|---|
|
IntersectToDistinctRule(Class<? extends Intersect> intersectClass,
RelBuilderFactory relBuilderFactory)
Deprecated.
|
protected |
IntersectToDistinctRule(IntersectToDistinctRule.Config config)
Creates an IntersectToDistinctRule.
|
| Modifier and Type | Method and Description |
|---|---|
void |
onMatch(RelOptRuleCall call)
Receives notification about a rule match.
|
any, convert, convert, convertList, convertOperand, convertOperand, equals, equals, getOperand, getOperands, getOutConvention, getOutTrait, hashCode, matches, none, operand, operand, operand, operand, operand, operandJ, operandJ, some, toString, unorderedprotected IntersectToDistinctRule(IntersectToDistinctRule.Config config)
@Deprecated public IntersectToDistinctRule(Class<? extends Intersect> intersectClass, RelBuilderFactory relBuilderFactory)
public 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>, org.apache.calcite.plan.RelHintsPropagator) to
register the expression.
onMatch in class RelOptRulecall - Rule callRelOptRule.matches(RelOptRuleCall)Copyright © 2012-2022 Apache Software Foundation. All Rights Reserved.