Java Code Examples for org.apache.calcite.rel.logical.LogicalUnion#create()
The following examples show how to use
org.apache.calcite.rel.logical.LogicalUnion#create() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StreamRules.java From Bats with Apache License 2.0 | 6 votes |
public void onMatch(RelOptRuleCall call) { final Delta delta = call.rel(0); Util.discard(delta); final Join join = call.rel(1); final RelNode left = join.getLeft(); final RelNode right = join.getRight(); final LogicalDelta rightWithDelta = LogicalDelta.create(right); final LogicalJoin joinL = LogicalJoin.create(left, rightWithDelta, join.getCondition(), join.getVariablesSet(), join.getJoinType(), join.isSemiJoinDone(), ImmutableList.copyOf(join.getSystemFieldList())); final LogicalDelta leftWithDelta = LogicalDelta.create(left); final LogicalJoin joinR = LogicalJoin.create(leftWithDelta, right, join.getCondition(), join.getVariablesSet(), join.getJoinType(), join.isSemiJoinDone(), ImmutableList.copyOf(join.getSystemFieldList())); List<RelNode> inputsToUnion = new ArrayList<>(); inputsToUnion.add(joinL); inputsToUnion.add(joinR); final LogicalUnion newNode = LogicalUnion.create(inputsToUnion, true); call.transformTo(newNode); }
Example 2
Source File: StreamRules.java From Bats with Apache License 2.0 | 5 votes |
@Override public void onMatch(RelOptRuleCall call) { final Delta delta = call.rel(0); Util.discard(delta); final Union union = call.rel(1); final List<RelNode> newInputs = new ArrayList<>(); for (RelNode input : union.getInputs()) { final LogicalDelta newDelta = LogicalDelta.create(input); newInputs.add(newDelta); } final LogicalUnion newUnion = LogicalUnion.create(newInputs, union.all); call.transformTo(newUnion); }
Example 3
Source File: RelFactories.java From Bats with Apache License 2.0 | 5 votes |
public RelNode createSetOp(SqlKind kind, List<RelNode> inputs, boolean all) { switch (kind) { case UNION: return LogicalUnion.create(inputs, all); case EXCEPT: return LogicalMinus.create(inputs, all); case INTERSECT: return LogicalIntersect.create(inputs, all); default: throw new AssertionError("not a set op: " + kind); } }
Example 4
Source File: StreamRules.java From calcite with Apache License 2.0 | 5 votes |
@Override public void onMatch(RelOptRuleCall call) { final Delta delta = call.rel(0); Util.discard(delta); final Union union = call.rel(1); final List<RelNode> newInputs = new ArrayList<>(); for (RelNode input : union.getInputs()) { final LogicalDelta newDelta = LogicalDelta.create(input); newInputs.add(newDelta); } final LogicalUnion newUnion = LogicalUnion.create(newInputs, union.all); call.transformTo(newUnion); }
Example 5
Source File: StreamRules.java From calcite with Apache License 2.0 | 5 votes |
public void onMatch(RelOptRuleCall call) { final Delta delta = call.rel(0); Util.discard(delta); final Join join = call.rel(1); final RelNode left = join.getLeft(); final RelNode right = join.getRight(); final LogicalDelta rightWithDelta = LogicalDelta.create(right); final LogicalJoin joinL = LogicalJoin.create(left, rightWithDelta, join.getHints(), join.getCondition(), join.getVariablesSet(), join.getJoinType(), join.isSemiJoinDone(), ImmutableList.copyOf(join.getSystemFieldList())); final LogicalDelta leftWithDelta = LogicalDelta.create(left); final LogicalJoin joinR = LogicalJoin.create(leftWithDelta, right, join.getHints(), join.getCondition(), join.getVariablesSet(), join.getJoinType(), join.isSemiJoinDone(), ImmutableList.copyOf(join.getSystemFieldList())); List<RelNode> inputsToUnion = new ArrayList<>(); inputsToUnion.add(joinL); inputsToUnion.add(joinR); final LogicalUnion newNode = LogicalUnion.create(inputsToUnion, true); call.transformTo(newNode); }
Example 6
Source File: RelFactories.java From calcite with Apache License 2.0 | 5 votes |
public RelNode createSetOp(SqlKind kind, List<RelNode> inputs, boolean all) { switch (kind) { case UNION: return LogicalUnion.create(inputs, all); case EXCEPT: return LogicalMinus.create(inputs, all); case INTERSECT: return LogicalIntersect.create(inputs, all); default: throw new AssertionError("not a set op: " + kind); } }
Example 7
Source File: RelMetadataTest.java From calcite with Apache License 2.0 | 5 votes |
@Test void testTableReferencesUnionUnknownNode() { final String sql = "select * from emp limit 10"; final RelNode node = convertSql(sql); final RelNode nodeWithUnknown = new DummyRelNode( node.getCluster(), node.getTraitSet(), node); // Union final LogicalUnion union = LogicalUnion.create(ImmutableList.of(nodeWithUnknown, node), true); final RelMetadataQuery mq = node.getCluster().getMetadataQuery(); final Set<RelTableRef> tableReferences = mq.getTableReferences(union); assertNull(tableReferences); }
Example 8
Source File: MycatCalcitePlanner.java From Mycat2 with GNU General Public License v3.0 | 4 votes |
/** * 测试单库分表与不同分片两个情况 * * @param relBuilder * @param cache * @param margeList * @param bestExp2 * @return */ private RelNode simplyAggreate(MycatRelBuilder relBuilder, IdentityHashMap<RelNode, Boolean> cache, IdentityHashMap<RelNode, List<String>> margeList, RelNode bestExp2) { RelNode parent = bestExp2; RelNode child = bestExp2 instanceof Aggregate ? bestExp2.getInput(0) : null; RelNode bestExp3 = parent; if (parent instanceof Aggregate && child instanceof Union) { Aggregate aggregate = (Aggregate) parent; if (aggregate.getAggCallList() != null && !aggregate.getAggCallList().isEmpty()) {//distinct会没有参数 List<AggregateCall> aggCallList = aggregate.getAggCallList(); boolean allMatch = aggregate.getRowType().getFieldCount() == 1 && aggCallList.stream().allMatch(new Predicate<AggregateCall>() { @Override public boolean test(AggregateCall aggregateCall) { return SUPPORTED_AGGREGATES.getOrDefault(aggregateCall.getAggregation().getKind(), false) && aggregate.getRowType().getFieldList().stream().allMatch(i -> i.getType().getSqlTypeName().getFamily() == SqlTypeFamily.NUMERIC); } }); if (allMatch) { List<RelNode> inputs = child.getInputs(); List<RelNode> resList = new ArrayList<>(inputs.size()); boolean allCanPush = true;//是否聚合节点涉及不同分片 String target = null; for (RelNode input : inputs) { RelNode res; if (cache.get(input)) { res = LogicalAggregate.create(input, aggregate.getGroupSet(), aggregate.getGroupSets(), aggregate.getAggCallList()); cache.put(res, Boolean.TRUE); List<String> strings = margeList.getOrDefault(input, Collections.emptyList()); Objects.requireNonNull(strings); if (target == null && strings.size() > 0) { target = strings.get(0); } else if (target != null && strings.size() > 0) { if (!target.equals(strings.get(0))) { allCanPush = false; } } margeList.put(res, strings); } else { res = input; allCanPush = false; } resList.add(res); } LogicalUnion logicalUnion = LogicalUnion.create(resList, ((Union) child).all); //构造sum relBuilder.clear(); relBuilder.push(logicalUnion); List<RexNode> fields = relBuilder.fields(); if (fields == null) { fields = Collections.emptyList(); } RelBuilder.GroupKey groupKey = relBuilder.groupKey(); List<RelBuilder.AggCall> aggCalls = fields.stream().map(i -> relBuilder.sum(i)).collect(Collectors.toList()); relBuilder.aggregate(groupKey, aggCalls); bestExp3 = relBuilder.build(); cache.put(logicalUnion, allCanPush); cache.put(bestExp3, allCanPush); if (target != null) {//是否聚合节点涉及不同分片 List<String> targetSingelList = Collections.singletonList(target); margeList.put(logicalUnion, targetSingelList); margeList.put(bestExp3, targetSingelList); } } } } return bestExp3; }