All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.calcite.tools.RelBuilder Maven / Gradle / Ivy

There is a newer version: 1.17.0-flink-r3
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.calcite.tools;

import org.apache.calcite.linq4j.Ord;
import org.apache.calcite.plan.Context;
import org.apache.calcite.plan.Contexts;
import org.apache.calcite.plan.RelOptCluster;
import org.apache.calcite.plan.RelOptPredicateList;
import org.apache.calcite.plan.RelOptSchema;
import org.apache.calcite.plan.RelOptTable;
import org.apache.calcite.plan.RelOptUtil;
import org.apache.calcite.rel.RelCollation;
import org.apache.calcite.rel.RelCollations;
import org.apache.calcite.rel.RelFieldCollation;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.core.Aggregate;
import org.apache.calcite.rel.core.AggregateCall;
import org.apache.calcite.rel.core.CorrelationId;
import org.apache.calcite.rel.core.Filter;
import org.apache.calcite.rel.core.Intersect;
import org.apache.calcite.rel.core.Join;
import org.apache.calcite.rel.core.JoinRelType;
import org.apache.calcite.rel.core.Match;
import org.apache.calcite.rel.core.Minus;
import org.apache.calcite.rel.core.Project;
import org.apache.calcite.rel.core.RelFactories;
import org.apache.calcite.rel.core.SemiJoin;
import org.apache.calcite.rel.core.Snapshot;
import org.apache.calcite.rel.core.Sort;
import org.apache.calcite.rel.core.TableScan;
import org.apache.calcite.rel.core.Union;
import org.apache.calcite.rel.core.Values;
import org.apache.calcite.rel.logical.LogicalFilter;
import org.apache.calcite.rel.logical.LogicalProject;
import org.apache.calcite.rel.metadata.RelMetadataQuery;
import org.apache.calcite.rel.type.RelDataType;
import org.apache.calcite.rel.type.RelDataTypeFactory;
import org.apache.calcite.rel.type.RelDataTypeField;
import org.apache.calcite.rel.type.RelDataTypeFieldImpl;
import org.apache.calcite.rex.RexBuilder;
import org.apache.calcite.rex.RexCall;
import org.apache.calcite.rex.RexCorrelVariable;
import org.apache.calcite.rex.RexExecutor;
import org.apache.calcite.rex.RexInputRef;
import org.apache.calcite.rex.RexLiteral;
import org.apache.calcite.rex.RexNode;
import org.apache.calcite.rex.RexShuttle;
import org.apache.calcite.rex.RexSimplify;
import org.apache.calcite.rex.RexUtil;
import org.apache.calcite.runtime.Hook;
import org.apache.calcite.schema.SchemaPlus;
import org.apache.calcite.server.CalciteServerStatement;
import org.apache.calcite.sql.SemiJoinType;
import org.apache.calcite.sql.SqlAggFunction;
import org.apache.calcite.sql.SqlKind;
import org.apache.calcite.sql.SqlMatchRecognize;
import org.apache.calcite.sql.SqlOperator;
import org.apache.calcite.sql.fun.SqlStdOperatorTable;
import org.apache.calcite.sql.type.SqlTypeName;
import org.apache.calcite.sql.validate.SqlValidatorUtil;
import org.apache.calcite.util.Holder;
import org.apache.calcite.util.ImmutableBitSet;
import org.apache.calcite.util.ImmutableIntList;
import org.apache.calcite.util.ImmutableNullableList;
import org.apache.calcite.util.Litmus;
import org.apache.calcite.util.NlsString;
import org.apache.calcite.util.Pair;
import org.apache.calcite.util.Util;
import org.apache.calcite.util.mapping.Mapping;
import org.apache.calcite.util.mapping.Mappings;

import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;

import java.math.BigDecimal;
import java.util.AbstractList;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;

import static org.apache.calcite.util.Static.RESOURCE;

/**
 * Builder for relational expressions.
 *
 * 

{@code RelBuilder} does not make possible anything that you could not * also accomplish by calling the factory methods of the particular relational * expression. But it makes common tasks more straightforward and concise. * *

{@code RelBuilder} uses factories to create relational expressions. * By default, it uses the default factories, which create logical relational * expressions ({@link LogicalFilter}, * {@link LogicalProject} and so forth). * But you could override those factories so that, say, {@code filter} creates * instead a {@code HiveFilter}. * *

It is not thread-safe. */ public class RelBuilder { protected final RelOptCluster cluster; protected final RelOptSchema relOptSchema; private final RelFactories.FilterFactory filterFactory; private final RelFactories.ProjectFactory projectFactory; private final RelFactories.AggregateFactory aggregateFactory; private final RelFactories.SortFactory sortFactory; private final RelFactories.SetOpFactory setOpFactory; private final RelFactories.JoinFactory joinFactory; private final RelFactories.SemiJoinFactory semiJoinFactory; private final RelFactories.CorrelateFactory correlateFactory; private final RelFactories.ValuesFactory valuesFactory; private final RelFactories.TableScanFactory scanFactory; private final RelFactories.SnapshotFactory snapshotFactory; private final RelFactories.MatchFactory matchFactory; private final Deque stack = new ArrayDeque<>(); private final boolean simplify; private final RexSimplify simplifier; private final RexSimplify simplifierUnknownAsFalse; protected RelBuilder(Context context, RelOptCluster cluster, RelOptSchema relOptSchema) { this.cluster = cluster; this.relOptSchema = relOptSchema; if (context == null) { context = Contexts.EMPTY_CONTEXT; } this.simplify = Hook.REL_BUILDER_SIMPLIFY.get(true); this.aggregateFactory = Util.first(context.unwrap(RelFactories.AggregateFactory.class), RelFactories.DEFAULT_AGGREGATE_FACTORY); this.filterFactory = Util.first(context.unwrap(RelFactories.FilterFactory.class), RelFactories.DEFAULT_FILTER_FACTORY); this.projectFactory = Util.first(context.unwrap(RelFactories.ProjectFactory.class), RelFactories.DEFAULT_PROJECT_FACTORY); this.sortFactory = Util.first(context.unwrap(RelFactories.SortFactory.class), RelFactories.DEFAULT_SORT_FACTORY); this.setOpFactory = Util.first(context.unwrap(RelFactories.SetOpFactory.class), RelFactories.DEFAULT_SET_OP_FACTORY); this.joinFactory = Util.first(context.unwrap(RelFactories.JoinFactory.class), RelFactories.DEFAULT_JOIN_FACTORY); this.semiJoinFactory = Util.first(context.unwrap(RelFactories.SemiJoinFactory.class), RelFactories.DEFAULT_SEMI_JOIN_FACTORY); this.correlateFactory = Util.first(context.unwrap(RelFactories.CorrelateFactory.class), RelFactories.DEFAULT_CORRELATE_FACTORY); this.valuesFactory = Util.first(context.unwrap(RelFactories.ValuesFactory.class), RelFactories.DEFAULT_VALUES_FACTORY); this.scanFactory = Util.first(context.unwrap(RelFactories.TableScanFactory.class), RelFactories.DEFAULT_TABLE_SCAN_FACTORY); this.snapshotFactory = Util.first(context.unwrap(RelFactories.SnapshotFactory.class), RelFactories.DEFAULT_SNAPSHOT_FACTORY); this.matchFactory = Util.first(context.unwrap(RelFactories.MatchFactory.class), RelFactories.DEFAULT_MATCH_FACTORY); final RexExecutor executor = Util.first(context.unwrap(RexExecutor.class), Util.first(cluster.getPlanner().getExecutor(), RexUtil.EXECUTOR)); final RelOptPredicateList predicates = RelOptPredicateList.EMPTY; this.simplifier = new RexSimplify(cluster.getRexBuilder(), predicates, false, executor); this.simplifierUnknownAsFalse = new RexSimplify(cluster.getRexBuilder(), predicates, true, executor); } /** Creates a RelBuilder. */ public static RelBuilder create(FrameworkConfig config) { final RelOptCluster[] clusters = {null}; final RelOptSchema[] relOptSchemas = {null}; Frameworks.withPrepare( new Frameworks.PrepareAction(config) { public Void apply(RelOptCluster cluster, RelOptSchema relOptSchema, SchemaPlus rootSchema, CalciteServerStatement statement) { clusters[0] = cluster; relOptSchemas[0] = relOptSchema; return null; } }); return new RelBuilder(config.getContext(), clusters[0], relOptSchemas[0]); } /** Returns the type factory. */ public RelDataTypeFactory getTypeFactory() { return cluster.getTypeFactory(); } /** Returns the builder for {@link RexNode} expressions. */ public RexBuilder getRexBuilder() { return cluster.getRexBuilder(); } /** Creates a {@link RelBuilderFactory}, a partially-created RelBuilder. * Just add a {@link RelOptCluster} and a {@link RelOptSchema} */ public static RelBuilderFactory proto(final Context context) { return (cluster, schema) -> new RelBuilder(context, cluster, schema); } /** Creates a {@link RelBuilderFactory} that uses a given set of factories. */ public static RelBuilderFactory proto(Object... factories) { return proto(Contexts.of(factories)); } // Methods for manipulating the stack /** Adds a relational expression to be the input to the next relational * expression constructed. * *

This method is usual when you want to weave in relational expressions * that are not supported by the builder. If, while creating such expressions, * you need to use previously built expressions as inputs, call * {@link #build()} to pop those inputs. */ public RelBuilder push(RelNode node) { stack.push(new Frame(node)); return this; } /** Adds a rel node to the top of the stack while preserving the field names * and aliases. */ private void replaceTop(RelNode node) { final Frame frame = stack.pop(); stack.push(new Frame(node, frame.fields)); } /** Pushes a collection of relational expressions. */ public RelBuilder pushAll(Iterable nodes) { for (RelNode node : nodes) { push(node); } return this; } /** Returns the final relational expression. * *

Throws if the stack is empty. */ public RelNode build() { return stack.pop().rel; } /** Returns the relational expression at the top of the stack, but does not * remove it. */ public RelNode peek() { return peek_().rel; } private Frame peek_() { return stack.peek(); } /** Returns the relational expression {@code n} positions from the top of the * stack, but does not remove it. */ public RelNode peek(int n) { return peek_(n).rel; } private Frame peek_(int n) { return Iterables.get(stack, n); } /** Returns the relational expression {@code n} positions from the top of the * stack, but does not remove it. */ public RelNode peek(int inputCount, int inputOrdinal) { return peek_(inputCount, inputOrdinal).rel; } private Frame peek_(int inputCount, int inputOrdinal) { return peek_(inputCount - 1 - inputOrdinal); } /** Returns the number of fields in all inputs before (to the left of) * the given input. * * @param inputCount Number of inputs * @param inputOrdinal Input ordinal */ private int inputOffset(int inputCount, int inputOrdinal) { int offset = 0; for (int i = 0; i < inputOrdinal; i++) { offset += peek(inputCount, i).getRowType().getFieldCount(); } return offset; } // Methods that return scalar expressions /** Creates a literal (constant expression). */ public RexNode literal(Object value) { final RexBuilder rexBuilder = cluster.getRexBuilder(); if (value == null) { return rexBuilder.constantNull(); } else if (value instanceof Boolean) { return rexBuilder.makeLiteral((Boolean) value); } else if (value instanceof BigDecimal) { return rexBuilder.makeExactLiteral((BigDecimal) value); } else if (value instanceof Float || value instanceof Double) { return rexBuilder.makeApproxLiteral( BigDecimal.valueOf(((Number) value).doubleValue())); } else if (value instanceof Number) { return rexBuilder.makeExactLiteral( BigDecimal.valueOf(((Number) value).longValue())); } else if (value instanceof String) { return rexBuilder.makeLiteral((String) value); } else { throw new IllegalArgumentException("cannot convert " + value + " (" + value.getClass() + ") to a constant"); } } /** Creates a correlation variable for the current input, and writes it into * a Holder. */ public RelBuilder variable(Holder v) { v.set((RexCorrelVariable) getRexBuilder().makeCorrel(peek().getRowType(), cluster.createCorrel())); return this; } /** Creates a reference to a field by name. * *

Equivalent to {@code field(1, 0, fieldName)}. * * @param fieldName Field name */ public RexInputRef field(String fieldName) { return field(1, 0, fieldName); } /** Creates a reference to a field of given input relational expression * by name. * * @param inputCount Number of inputs * @param inputOrdinal Input ordinal * @param fieldName Field name */ public RexInputRef field(int inputCount, int inputOrdinal, String fieldName) { final Frame frame = peek_(inputCount, inputOrdinal); final List fieldNames = Pair.left(frame.fields()); int i = fieldNames.indexOf(fieldName); if (i >= 0) { return field(inputCount, inputOrdinal, i); } else { throw new IllegalArgumentException("field [" + fieldName + "] not found; input fields are: " + fieldNames); } } /** Creates a reference to an input field by ordinal. * *

Equivalent to {@code field(1, 0, ordinal)}. * * @param fieldOrdinal Field ordinal */ public RexInputRef field(int fieldOrdinal) { return (RexInputRef) field(1, 0, fieldOrdinal, false); } /** Creates a reference to a field of a given input relational expression * by ordinal. * * @param inputCount Number of inputs * @param inputOrdinal Input ordinal * @param fieldOrdinal Field ordinal within input */ public RexInputRef field(int inputCount, int inputOrdinal, int fieldOrdinal) { return (RexInputRef) field(inputCount, inputOrdinal, fieldOrdinal, false); } /** As {@link #field(int, int, int)}, but if {@code alias} is true, the method * may apply an alias to make sure that the field has the same name as in the * input frame. If no alias is applied the expression is definitely a * {@link RexInputRef}. */ private RexNode field(int inputCount, int inputOrdinal, int fieldOrdinal, boolean alias) { final Frame frame = peek_(inputCount, inputOrdinal); final RelNode input = frame.rel; final RelDataType rowType = input.getRowType(); if (fieldOrdinal < 0 || fieldOrdinal > rowType.getFieldCount()) { throw new IllegalArgumentException("field ordinal [" + fieldOrdinal + "] out of range; input fields are: " + rowType.getFieldNames()); } final RelDataTypeField field = rowType.getFieldList().get(fieldOrdinal); final int offset = inputOffset(inputCount, inputOrdinal); final RexInputRef ref = cluster.getRexBuilder() .makeInputRef(field.getType(), offset + fieldOrdinal); final RelDataTypeField aliasField = frame.fields().get(fieldOrdinal); if (!alias || field.getName().equals(aliasField.getName())) { return ref; } else { return alias(ref, aliasField.getName()); } } /** Creates a reference to a field of the current record which originated * in a relation with a given alias. */ public RexNode field(String alias, String fieldName) { return field(1, alias, fieldName); } /** Creates a reference to a field which originated in a relation with the * given alias. Searches for the relation starting at the top of the * stack. */ public RexNode field(int inputCount, String alias, String fieldName) { Objects.requireNonNull(alias); Objects.requireNonNull(fieldName); final List fields = new ArrayList<>(); for (int inputOrdinal = 0; inputOrdinal < inputCount; ++inputOrdinal) { final Frame frame = peek_(inputOrdinal); for (Ord p : Ord.zip(frame.fields)) { // If alias and field name match, reference that field. if (p.e.left.contains(alias) && p.e.right.getName().equals(fieldName)) { return field(inputCount, inputCount - 1 - inputOrdinal, p.i); } fields.add( String.format(Locale.ROOT, "{aliases=%s,fieldName=%s}", p.e.left, p.e.right.getName())); } } throw new IllegalArgumentException("no aliased field found; fields are: " + fields); } /** Returns a reference to a given field of a record-valued expression. */ public RexNode field(RexNode e, String name) { return getRexBuilder().makeFieldAccess(e, name, false); } /** Returns references to the fields of the top input. */ public ImmutableList fields() { return fields(1, 0); } /** Returns references to the fields of a given input. */ public ImmutableList fields(int inputCount, int inputOrdinal) { final RelNode input = peek(inputCount, inputOrdinal); final RelDataType rowType = input.getRowType(); final ImmutableList.Builder nodes = ImmutableList.builder(); for (int fieldOrdinal : Util.range(rowType.getFieldCount())) { nodes.add(field(inputCount, inputOrdinal, fieldOrdinal)); } return nodes.build(); } /** Returns references to fields for a given collation. */ public ImmutableList fields(RelCollation collation) { final ImmutableList.Builder nodes = ImmutableList.builder(); for (RelFieldCollation fieldCollation : collation.getFieldCollations()) { RexNode node = field(fieldCollation.getFieldIndex()); switch (fieldCollation.direction) { case DESCENDING: node = desc(node); } switch (fieldCollation.nullDirection) { case FIRST: node = nullsFirst(node); break; case LAST: node = nullsLast(node); break; } nodes.add(node); } return nodes.build(); } /** Returns references to fields for a given list of input ordinals. */ public ImmutableList fields(List ordinals) { final ImmutableList.Builder nodes = ImmutableList.builder(); for (Number ordinal : ordinals) { RexNode node = field(1, 0, ordinal.intValue(), false); nodes.add(node); } return nodes.build(); } /** Returns references to fields identified by name. */ public ImmutableList fields(Iterable fieldNames) { final ImmutableList.Builder builder = ImmutableList.builder(); for (String fieldName : fieldNames) { builder.add(field(fieldName)); } return builder.build(); } /** Returns references to fields identified by a mapping. */ public ImmutableList fields(Mappings.TargetMapping mapping) { return fields(Mappings.asList(mapping)); } /** Creates an access to a field by name. */ public RexNode dot(RexNode node, String fieldName) { final RexBuilder builder = cluster.getRexBuilder(); return builder.makeFieldAccess(node, fieldName, true); } /** Creates an access to a field by ordinal. */ public RexNode dot(RexNode node, int fieldOrdinal) { final RexBuilder builder = cluster.getRexBuilder(); return builder.makeFieldAccess(node, fieldOrdinal); } /** Creates a call to a scalar operator. */ public RexNode call(SqlOperator operator, RexNode... operands) { return call(operator, ImmutableList.copyOf(operands)); } /** Creates a call to a scalar operator. */ private RexNode call(SqlOperator operator, List operandList) { final RexBuilder builder = cluster.getRexBuilder(); final RelDataType type = builder.deriveReturnType(operator, operandList); if (type == null) { throw new IllegalArgumentException("cannot derive type: " + operator + "; operands: " + Lists.transform(operandList, e -> e + ": " + e.getType())); } return builder.makeCall(type, operator, operandList); } /** Creates a call to a scalar operator. */ public RexNode call(SqlOperator operator, Iterable operands) { return call(operator, ImmutableList.copyOf(operands)); } /** Creates an AND. */ public RexNode and(RexNode... operands) { return and(ImmutableList.copyOf(operands)); } /** Creates an AND. * *

Simplifies the expression a little: * {@code e AND TRUE} becomes {@code e}; * {@code e AND e2 AND NOT e} becomes {@code e2}. */ public RexNode and(Iterable operands) { return simplifier.simplifyAnds(operands); } /** Creates an OR. */ public RexNode or(RexNode... operands) { return or(ImmutableList.copyOf(operands)); } /** Creates an OR. */ public RexNode or(Iterable operands) { return RexUtil.composeDisjunction(cluster.getRexBuilder(), operands); } /** Creates a NOT. */ public RexNode not(RexNode operand) { return call(SqlStdOperatorTable.NOT, operand); } /** Creates an {@code =}. */ public RexNode equals(RexNode operand0, RexNode operand1) { return call(SqlStdOperatorTable.EQUALS, operand0, operand1); } /** Creates a {@code <>}. */ public RexNode notEquals(RexNode operand0, RexNode operand1) { return call(SqlStdOperatorTable.NOT_EQUALS, operand0, operand1); } /** Creates a IS NULL. */ public RexNode isNull(RexNode operand) { return call(SqlStdOperatorTable.IS_NULL, operand); } /** Creates a IS NOT NULL. */ public RexNode isNotNull(RexNode operand) { return call(SqlStdOperatorTable.IS_NOT_NULL, operand); } /** Creates an expression that casts an expression to a given type. */ public RexNode cast(RexNode expr, SqlTypeName typeName) { final RelDataType type = cluster.getTypeFactory().createSqlType(typeName); return cluster.getRexBuilder().makeCast(type, expr); } /** Creates an expression that casts an expression to a type with a given name * and precision or length. */ public RexNode cast(RexNode expr, SqlTypeName typeName, int precision) { final RelDataType type = cluster.getTypeFactory().createSqlType(typeName, precision); return cluster.getRexBuilder().makeCast(type, expr); } /** Creates an expression that casts an expression to a type with a given * name, precision and scale. */ public RexNode cast(RexNode expr, SqlTypeName typeName, int precision, int scale) { final RelDataType type = cluster.getTypeFactory().createSqlType(typeName, precision, scale); return cluster.getRexBuilder().makeCast(type, expr); } /** * Returns an expression wrapped in an alias. * * @see #project */ public RexNode alias(RexNode expr, String alias) { return call(SqlStdOperatorTable.AS, expr, literal(alias)); } /** Converts a sort expression to descending. */ public RexNode desc(RexNode node) { return call(SqlStdOperatorTable.DESC, node); } /** Converts a sort expression to nulls last. */ public RexNode nullsLast(RexNode node) { return call(SqlStdOperatorTable.NULLS_LAST, node); } /** Converts a sort expression to nulls first. */ public RexNode nullsFirst(RexNode node) { return call(SqlStdOperatorTable.NULLS_FIRST, node); } // Methods that create group keys and aggregate calls /** Creates an empty group key. */ public GroupKey groupKey() { return groupKey(ImmutableList.of()); } /** Creates a group key. */ public GroupKey groupKey(RexNode... nodes) { return groupKey(ImmutableList.copyOf(nodes)); } /** Creates a group key. */ public GroupKey groupKey(Iterable nodes) { return new GroupKeyImpl(ImmutableList.copyOf(nodes), false, null, null); } /** Creates a group key with grouping sets. */ public GroupKey groupKey(Iterable nodes, boolean indicator, Iterable> nodeLists) { final ImmutableList.Builder> builder = ImmutableList.builder(); for (Iterable nodeList : nodeLists) { builder.add(ImmutableList.copyOf(nodeList)); } return new GroupKeyImpl(ImmutableList.copyOf(nodes), indicator, builder.build(), null); } /** Creates a group key of fields identified by ordinal. */ public GroupKey groupKey(int... fieldOrdinals) { return groupKey(fields(ImmutableIntList.of(fieldOrdinals))); } /** Creates a group key of fields identified by name. */ public GroupKey groupKey(String... fieldNames) { return groupKey(fields(ImmutableList.copyOf(fieldNames))); } /** Creates a group key with grouping sets, both identified by field positions * in the underlying relational expression. * *

This method of creating a group key does not allow you to group on new * expressions, only column projections, but is efficient, especially when you * are coming from an existing {@link Aggregate}. */ public GroupKey groupKey(ImmutableBitSet groupSet, ImmutableList groupSets) { return groupKey_(groupSet, false, groupSets); } /** @deprecated Use {@link #groupKey(ImmutableBitSet, ImmutableList)}. */ @Deprecated // to be removed before 2.0 public GroupKey groupKey(ImmutableBitSet groupSet, boolean indicator, ImmutableList groupSets) { return groupKey_(groupSet, indicator, groupSets); } private GroupKey groupKey_(ImmutableBitSet groupSet, boolean indicator, ImmutableList groupSets) { if (groupSet.length() > peek().getRowType().getFieldCount()) { throw new IllegalArgumentException("out of bounds: " + groupSet); } if (groupSets == null) { groupSets = ImmutableList.of(groupSet); } final ImmutableList nodes = fields(ImmutableIntList.of(groupSet.toArray())); final List> nodeLists = Lists.transform(groupSets, bitSet -> fields(ImmutableIntList.of(bitSet.toArray()))); return groupKey(nodes, indicator, nodeLists); } @Deprecated // to be removed before 2.0 public AggCall aggregateCall(SqlAggFunction aggFunction, boolean distinct, RexNode filter, String alias, RexNode... operands) { return aggregateCall(aggFunction, distinct, false, filter, alias, ImmutableList.copyOf(operands)); } /** Creates a call to an aggregate function. */ public AggCall aggregateCall(SqlAggFunction aggFunction, boolean distinct, boolean approximate, RexNode filter, String alias, RexNode... operands) { return aggregateCall(aggFunction, distinct, approximate, filter, alias, ImmutableList.copyOf(operands)); } @Deprecated // to be removed before 2.0 public AggCall aggregateCall(SqlAggFunction aggFunction, boolean distinct, RexNode filter, String alias, Iterable operands) { return aggregateCall(aggFunction, distinct, false, filter, alias, operands); } /** Creates a call to an aggregate function. */ public AggCall aggregateCall(SqlAggFunction aggFunction, boolean distinct, boolean approximate, RexNode filter, String alias, Iterable operands) { if (filter != null) { if (filter.getType().getSqlTypeName() != SqlTypeName.BOOLEAN) { throw RESOURCE.filterMustBeBoolean().ex(); } if (filter.getType().isNullable()) { filter = call(SqlStdOperatorTable.IS_TRUE, filter); } } return new AggCallImpl(aggFunction, distinct, approximate, filter, alias, ImmutableList.copyOf(operands)); } /** Creates a call to the COUNT aggregate function. */ public AggCall count(boolean distinct, String alias, RexNode... operands) { return aggregateCall(SqlStdOperatorTable.COUNT, distinct, false, null, alias, operands); } /** Creates a call to the COUNT(*) aggregate function. */ public AggCall countStar(String alias) { return aggregateCall(SqlStdOperatorTable.COUNT, false, false, null, alias); } /** Creates a call to the SUM aggregate function. */ public AggCall sum(boolean distinct, String alias, RexNode operand) { return aggregateCall(SqlStdOperatorTable.SUM, distinct, false, null, alias, operand); } /** Creates a call to the AVG aggregate function. */ public AggCall avg(boolean distinct, String alias, RexNode operand) { return aggregateCall(SqlStdOperatorTable.AVG, distinct, false, null, alias, operand); } /** Creates a call to the MIN aggregate function. */ public AggCall min(String alias, RexNode operand) { return aggregateCall(SqlStdOperatorTable.MIN, false, false, null, alias, operand); } /** Creates a call to the MAX aggregate function. */ public AggCall max(String alias, RexNode operand) { return aggregateCall(SqlStdOperatorTable.MAX, false, false, null, alias, operand); } // Methods for patterns /** * Creates a reference to a given field of the pattern. * * @param alpha the pattern name * @param type Type of field * @param i Ordinal of field * @return Reference to field of pattern */ public RexNode patternField(String alpha, RelDataType type, int i) { return getRexBuilder().makePatternFieldRef(alpha, type, i); } /** Creates a call that concatenates patterns; * for use in {@link #match}. */ public RexNode patternConcat(Iterable nodes) { final ImmutableList list = ImmutableList.copyOf(nodes); if (list.size() > 2) { // Convert into binary calls return patternConcat(patternConcat(Util.skipLast(list)), Util.last(list)); } final RelDataType t = getTypeFactory().createSqlType(SqlTypeName.NULL); return getRexBuilder().makeCall(t, SqlStdOperatorTable.PATTERN_CONCAT, list); } /** Creates a call that concatenates patterns; * for use in {@link #match}. */ public RexNode patternConcat(RexNode... nodes) { return patternConcat(ImmutableList.copyOf(nodes)); } /** Creates a call that creates alternate patterns; * for use in {@link #match}. */ public RexNode patternAlter(Iterable nodes) { final RelDataType t = getTypeFactory().createSqlType(SqlTypeName.NULL); return getRexBuilder().makeCall(t, SqlStdOperatorTable.PATTERN_ALTER, ImmutableList.copyOf(nodes)); } /** Creates a call that creates alternate patterns; * for use in {@link #match}. */ public RexNode patternAlter(RexNode... nodes) { return patternAlter(ImmutableList.copyOf(nodes)); } /** Creates a call that creates quantify patterns; * for use in {@link #match}. */ public RexNode patternQuantify(Iterable nodes) { final RelDataType t = getTypeFactory().createSqlType(SqlTypeName.NULL); return getRexBuilder().makeCall(t, SqlStdOperatorTable.PATTERN_QUANTIFIER, ImmutableList.copyOf(nodes)); } /** Creates a call that creates quantify patterns; * for use in {@link #match}. */ public RexNode patternQuantify(RexNode... nodes) { return patternQuantify(ImmutableList.copyOf(nodes)); } /** Creates a call that creates permute patterns; * for use in {@link #match}. */ public RexNode patternPermute(Iterable nodes) { final RelDataType t = getTypeFactory().createSqlType(SqlTypeName.NULL); return getRexBuilder().makeCall(t, SqlStdOperatorTable.PATTERN_PERMUTE, ImmutableList.copyOf(nodes)); } /** Creates a call that creates permute patterns; * for use in {@link #match}. */ public RexNode patternPermute(RexNode... nodes) { return patternPermute(ImmutableList.copyOf(nodes)); } /** Creates a call that creates an exclude pattern; * for use in {@link #match}. */ public RexNode patternExclude(RexNode node) { final RelDataType t = getTypeFactory().createSqlType(SqlTypeName.NULL); return getRexBuilder().makeCall(t, SqlStdOperatorTable.PATTERN_EXCLUDE, ImmutableList.of(node)); } // Methods that create relational expressions /** Creates a {@link TableScan} of the table * with a given name. * *

Throws if the table does not exist. * *

Returns this builder. * * @param tableNames Name of table (can optionally be qualified) */ public RelBuilder scan(Iterable tableNames) { final List names = ImmutableList.copyOf(tableNames); final RelOptTable relOptTable = relOptSchema.getTableForMember(names); if (relOptTable == null) { throw RESOURCE.tableNotFound(String.join(".", names)).ex(); } final RelNode scan = scanFactory.createScan(cluster, relOptTable); push(scan); return this; } /** Creates a {@link TableScan} of the table * with a given name. * *

Throws if the table does not exist. * *

Returns this builder. * * @param tableNames Name of table (can optionally be qualified) */ public RelBuilder scan(String... tableNames) { return scan(ImmutableList.copyOf(tableNames)); } /** Creates a {@link Snapshot} of a given snapshot period. * *

Returns this builder. * * @param period Name of table (can optionally be qualified) */ public RelBuilder snapshot(RexNode period) { final Frame frame = stack.pop(); final RelNode snapshot = snapshotFactory.createSnapshot(frame.rel, period); stack.push(new Frame(snapshot, frame.fields)); return this; } /** Creates a {@link Filter} of an array of * predicates. * *

The predicates are combined using AND, * and optimized in a similar way to the {@link #and} method. * If the result is TRUE no filter is created. */ public RelBuilder filter(RexNode... predicates) { return filter(ImmutableList.copyOf(predicates)); } /** Creates a {@link Filter} of a list of * predicates. * *

The predicates are combined using AND, * and optimized in a similar way to the {@link #and} method. * If the result is TRUE no filter is created. */ public RelBuilder filter(Iterable predicates) { final RexNode simplifiedPredicates = simplifierUnknownAsFalse.simplifyFilterPredicates(predicates); if (simplifiedPredicates == null) { return empty(); } if (!simplifiedPredicates.isAlwaysTrue()) { final Frame frame = stack.pop(); final RelNode filter = filterFactory.createFilter(frame.rel, simplifiedPredicates); stack.push(new Frame(filter, frame.fields)); } return this; } /** Creates a {@link Project} of the given list * of expressions. * *

Infers names as would {@link #project(Iterable, Iterable)} if all * suggested names were null. * * @param nodes Expressions */ public RelBuilder project(Iterable nodes) { return project(nodes, ImmutableList.of()); } /** Creates a {@link Project} of the given list * of expressions and field names. * * @param nodes Expressions * @param fieldNames field names for expressions */ public RelBuilder project(Iterable nodes, Iterable fieldNames) { return project(nodes, fieldNames, false); } /** Creates a {@link Project} of the given list * of expressions, using the given names. * *

Names are deduced as follows: *

    *
  • If the length of {@code fieldNames} is greater than the index of * the current entry in {@code nodes}, and the entry in * {@code fieldNames} is not null, uses it; otherwise *
  • If an expression projects an input field, * or is a cast an input field, * uses the input field name; otherwise *
  • If an expression is a call to * {@link SqlStdOperatorTable#AS} * (see {@link #alias}), removes the call but uses the intended alias. *
* *

After the field names have been inferred, makes the * field names unique by appending numeric suffixes. * * @param nodes Expressions * @param fieldNames Suggested field names * @param force create project even if it is identity */ public RelBuilder project( Iterable nodes, Iterable fieldNames, boolean force) { final List names = new ArrayList<>(); final List exprList = new ArrayList<>(); final Iterator nameIterator = fieldNames.iterator(); for (RexNode node : nodes) { if (simplify) { node = simplifier.simplifyPreservingType(node); } exprList.add(node); String name = nameIterator.hasNext() ? nameIterator.next() : null; names.add(name != null ? name : inferAlias(exprList, node)); } final Frame frame = stack.peek(); final ImmutableList.Builder fields = ImmutableList.builder(); final Set uniqueNameList = getTypeFactory().getTypeSystem().isSchemaCaseSensitive() ? new HashSet() : new TreeSet<>(String.CASE_INSENSITIVE_ORDER); // calculate final names and build field list for (int i = 0; i < names.size(); ++i) { RexNode node = exprList.get(i); String name = names.get(i); Field field; if (name == null || uniqueNameList.contains(name)) { int j = 0; if (name == null) { j = i; } do { name = SqlValidatorUtil.F_SUGGESTER.apply(name, j, j++); } while (uniqueNameList.contains(name)); names.set(i, name); } RelDataTypeField fieldType = new RelDataTypeFieldImpl(name, i, node.getType()); switch (node.getKind()) { case INPUT_REF: // preserve rel aliases for INPUT_REF fields final int index = ((RexInputRef) node).getIndex(); field = new Field(frame.fields.get(index).left, fieldType); break; default: field = new Field(ImmutableSet.of(), fieldType); break; } uniqueNameList.add(name); fields.add(field); } final RelDataType inputRowType = peek().getRowType(); if (!force && RexUtil.isIdentity(exprList, inputRowType)) { if (names.equals(inputRowType.getFieldNames())) { // Do not create an identity project if it does not rename any fields return this; } else { // create "virtual" row type for project only rename fields stack.pop(); stack.push(new Frame(frame.rel, fields.build())); return this; } } final RelNode project = projectFactory.createProject(frame.rel, ImmutableList.copyOf(exprList), names); stack.pop(); stack.push(new Frame(project, fields.build())); return this; } /** Creates a {@link Project} of the given * expressions. */ public RelBuilder project(RexNode... nodes) { return project(ImmutableList.copyOf(nodes)); } /** Creates a {@link Project} of the given * expressions and field names, and optionally optimizing. * *

If {@code fieldNames} is null, or if a particular entry in * {@code fieldNames} is null, derives field names from the input * expressions. * *

If {@code force} is false, * and the input is a {@code Project}, * and the expressions make the trivial projection ($0, $1, ...), * modifies the input. * * @param nodes Expressions * @param fieldNames Suggested field names, or null to generate * @param force Whether to create a renaming Project if the * projections are trivial */ public RelBuilder projectNamed(Iterable nodes, Iterable fieldNames, boolean force) { @SuppressWarnings("unchecked") final List nodeList = nodes instanceof List ? (List) nodes : ImmutableList.copyOf(nodes); final List fieldNameList = fieldNames == null ? null : fieldNames instanceof List ? (List) fieldNames : ImmutableNullableList.copyOf(fieldNames); final RelNode input = peek(); final RelDataType rowType = RexUtil.createStructType(cluster.getTypeFactory(), nodeList, fieldNameList, SqlValidatorUtil.F_SUGGESTER); if (!force && RexUtil.isIdentity(nodeList, input.getRowType())) { if (input instanceof Project && fieldNames != null) { // Rename columns of child projection if desired field names are given. final Frame frame = stack.pop(); final Project childProject = (Project) frame.rel; final Project newInput = childProject.copy(childProject.getTraitSet(), childProject.getInput(), childProject.getProjects(), rowType); stack.push(new Frame(newInput, frame.fields)); } } else { project(nodeList, rowType.getFieldNames(), force); } return this; } /** Ensures that the field names match those given. * *

If all fields have the same name, adds nothing; * if any fields do not have the same name, adds a {@link Project}. * *

Note that the names can be short-lived. Other {@code RelBuilder} * operations make no guarantees about the field names of the rows they * produce. * * @param fieldNames List of desired field names; may contain null values or * have fewer fields than the current row type */ public RelBuilder rename(List fieldNames) { final List oldFieldNames = peek().getRowType().getFieldNames(); Preconditions.checkArgument(fieldNames.size() <= oldFieldNames.size(), "More names than fields"); final List newFieldNames = new ArrayList<>(oldFieldNames); for (int i = 0; i < fieldNames.size(); i++) { final String s = fieldNames.get(i); if (s != null) { newFieldNames.set(i, s); } } if (oldFieldNames.equals(newFieldNames)) { return this; } if (peek() instanceof Values) { // Special treatment for VALUES. Re-build it rather than add a project. final Values v = (Values) build(); final RelDataTypeFactory.Builder b = getTypeFactory().builder(); for (Pair p : Pair.zip(newFieldNames, v.getRowType().getFieldList())) { b.add(p.left, p.right.getType()); } return values(v.tuples, b.build()); } project(fields(), newFieldNames, true); // If, after de-duplication, the field names are unchanged, discard the // identity project we just created. if (peek().getRowType().getFieldNames().equals(oldFieldNames)) { final RelNode r = peek(); if (r instanceof Project) { stack.pop(); push(((Project) r).getInput()); } } return this; } /** Infers the alias of an expression. * *

If the expression was created by {@link #alias}, replaces the expression * in the project list. */ private String inferAlias(List exprList, RexNode expr) { switch (expr.getKind()) { case INPUT_REF: final RexInputRef ref = (RexInputRef) expr; return stack.peek().fields.get(ref.getIndex()).getValue().getName(); case CAST: return inferAlias(exprList, ((RexCall) expr).getOperands().get(0)); case AS: final RexCall call = (RexCall) expr; for (;;) { final int i = exprList.indexOf(expr); if (i < 0) { break; } exprList.set(i, call.getOperands().get(0)); } return ((NlsString) ((RexLiteral) call.getOperands().get(1)).getValue()) .getValue(); default: return null; } } /** Creates an {@link Aggregate} that makes the * relational expression distinct on all fields. */ public RelBuilder distinct() { return aggregate(groupKey(fields())); } /** Creates an {@link Aggregate} with an array of * calls. */ public RelBuilder aggregate(GroupKey groupKey, AggCall... aggCalls) { return aggregate(groupKey, ImmutableList.copyOf(aggCalls)); } /** Creates an {@link Aggregate} with a list of * calls. */ public RelBuilder aggregate(GroupKey groupKey, Iterable aggCalls) { final Registrar registrar = new Registrar(); registrar.extraNodes.addAll(fields()); registrar.names.addAll(peek().getRowType().getFieldNames()); final GroupKeyImpl groupKey_ = (GroupKeyImpl) groupKey; final ImmutableBitSet groupSet = ImmutableBitSet.of(registrar.registerExpressions(groupKey_.nodes)); label: if (Iterables.isEmpty(aggCalls) && !groupKey_.indicator) { final RelMetadataQuery mq = peek().getCluster().getMetadataQuery(); if (groupSet.isEmpty()) { final Double minRowCount = mq.getMinRowCount(peek()); if (minRowCount == null || minRowCount < 1D) { // We can't remove "GROUP BY ()" if there's a chance the rel could be // empty. break label; } } if (registrar.extraNodes.size() == fields().size()) { final Boolean unique = mq.areColumnsUnique(peek(), groupSet); if (unique != null && unique) { // Rel is already unique. return project(fields(groupSet.asList())); } } final Double maxRowCount = mq.getMaxRowCount(peek()); if (maxRowCount != null && maxRowCount <= 1D) { // If there is at most one row, rel is already unique. return this; } } final ImmutableList groupSets; if (groupKey_.nodeLists != null) { final int sizeBefore = registrar.extraNodes.size(); final SortedSet groupSetSet = new TreeSet<>(ImmutableBitSet.ORDERING); for (ImmutableList nodeList : groupKey_.nodeLists) { final ImmutableBitSet groupSet2 = ImmutableBitSet.of(registrar.registerExpressions(nodeList)); if (!groupSet.contains(groupSet2)) { throw new IllegalArgumentException("group set element " + nodeList + " must be a subset of group key"); } groupSetSet.add(groupSet2); } groupSets = ImmutableList.copyOf(groupSetSet); if (registrar.extraNodes.size() > sizeBefore) { throw new IllegalArgumentException( "group sets contained expressions not in group key: " + registrar.extraNodes.subList(sizeBefore, registrar.extraNodes.size())); } } else { groupSets = ImmutableList.of(groupSet); } for (AggCall aggCall : aggCalls) { if (aggCall instanceof AggCallImpl) { final AggCallImpl aggCall1 = (AggCallImpl) aggCall; registrar.registerExpressions(aggCall1.operands); if (aggCall1.filter != null) { registrar.registerExpression(aggCall1.filter); } } } project(registrar.extraNodes); rename(registrar.names); final Frame frame = stack.pop(); final RelNode r = frame.rel; final List aggregateCalls = new ArrayList<>(); for (AggCall aggCall : aggCalls) { final AggregateCall aggregateCall; if (aggCall instanceof AggCallImpl) { final AggCallImpl aggCall1 = (AggCallImpl) aggCall; final List args = registrar.registerExpressions(aggCall1.operands); final int filterArg = aggCall1.filter == null ? -1 : registrar.registerExpression(aggCall1.filter); if (aggCall1.distinct && !aggCall1.aggFunction.isQuantifierAllowed()) { throw new IllegalArgumentException("DISTINCT not allowed"); } if (aggCall1.filter != null && !aggCall1.aggFunction.allowsFilter()) { throw new IllegalArgumentException("FILTER not allowed"); } aggregateCall = AggregateCall.create(aggCall1.aggFunction, aggCall1.distinct, aggCall1.approximate, args, filterArg, groupSet.cardinality(), r, null, aggCall1.alias); } else { aggregateCall = ((AggCallImpl2) aggCall).aggregateCall; } aggregateCalls.add(aggregateCall); } assert ImmutableBitSet.ORDERING.isStrictlyOrdered(groupSets) : groupSets; for (ImmutableBitSet set : groupSets) { assert groupSet.contains(set); } RelNode aggregate = aggregateFactory.createAggregate(r, groupKey_.indicator, groupSet, groupSets, aggregateCalls); // build field list final ImmutableList.Builder fields = ImmutableList.builder(); final List aggregateFields = aggregate.getRowType().getFieldList(); int i = 0; // first, group fields for (Integer groupField : groupSet.asList()) { RexNode node = registrar.extraNodes.get(groupField); final SqlKind kind = node.getKind(); switch (kind) { case INPUT_REF: fields.add(frame.fields.get(((RexInputRef) node).getIndex())); break; default: String name = aggregateFields.get(i).getName(); RelDataTypeField fieldType = new RelDataTypeFieldImpl(name, i, node.getType()); fields.add(new Field(ImmutableSet.of(), fieldType)); break; } i++; } // second, indicator fields (copy from aggregate rel type) if (groupKey_.indicator) { for (int j = 0; j < groupSet.cardinality(); ++j) { final RelDataTypeField field = aggregateFields.get(i); final RelDataTypeField fieldType = new RelDataTypeFieldImpl(field.getName(), i, field.getType()); fields.add(new Field(ImmutableSet.of(), fieldType)); i++; } } // third, aggregate fields. retain `i' as field index for (int j = 0; j < aggregateCalls.size(); ++j) { final AggregateCall call = aggregateCalls.get(j); final RelDataTypeField fieldType = new RelDataTypeFieldImpl(aggregateFields.get(i + j).getName(), i + j, call.getType()); fields.add(new Field(ImmutableSet.of(), fieldType)); } stack.push(new Frame(aggregate, fields.build())); return this; } private RelBuilder setOp(boolean all, SqlKind kind, int n) { List inputs = new LinkedList<>(); for (int i = 0; i < n; i++) { inputs.add(0, build()); } switch (kind) { case UNION: case INTERSECT: case EXCEPT: if (n < 1) { throw new IllegalArgumentException( "bad INTERSECT/UNION/EXCEPT input count"); } break; default: throw new AssertionError("bad setOp " + kind); } switch (n) { case 1: return push(inputs.get(0)); default: return push(setOpFactory.createSetOp(kind, inputs, all)); } } /** Creates a {@link Union} of the two most recent * relational expressions on the stack. * * @param all Whether to create UNION ALL */ public RelBuilder union(boolean all) { return union(all, 2); } /** Creates a {@link Union} of the {@code n} * most recent relational expressions on the stack. * * @param all Whether to create UNION ALL * @param n Number of inputs to the UNION operator */ public RelBuilder union(boolean all, int n) { return setOp(all, SqlKind.UNION, n); } /** Creates an {@link Intersect} of the two most * recent relational expressions on the stack. * * @param all Whether to create INTERSECT ALL */ public RelBuilder intersect(boolean all) { return intersect(all, 2); } /** Creates an {@link Intersect} of the {@code n} * most recent relational expressions on the stack. * * @param all Whether to create INTERSECT ALL * @param n Number of inputs to the INTERSECT operator */ public RelBuilder intersect(boolean all, int n) { return setOp(all, SqlKind.INTERSECT, n); } /** Creates a {@link Minus} of the two most recent * relational expressions on the stack. * * @param all Whether to create EXCEPT ALL */ public RelBuilder minus(boolean all) { return minus(all, 2); } /** Creates a {@link Minus} of the {@code n} * most recent relational expressions on the stack. * * @param all Whether to create EXCEPT ALL */ public RelBuilder minus(boolean all, int n) { return setOp(all, SqlKind.EXCEPT, n); } /** Creates a {@link Join}. */ public RelBuilder join(JoinRelType joinType, RexNode condition0, RexNode... conditions) { return join(joinType, Lists.asList(condition0, conditions)); } /** Creates a {@link Join} with multiple * conditions. */ public RelBuilder join(JoinRelType joinType, Iterable conditions) { return join(joinType, and(conditions), ImmutableSet.of()); } public RelBuilder join(JoinRelType joinType, RexNode condition) { return join(joinType, condition, ImmutableSet.of()); } /** Creates a {@link Join} with correlating * variables. */ public RelBuilder join(JoinRelType joinType, RexNode condition, Set variablesSet) { Frame right = stack.pop(); final Frame left = stack.pop(); final RelNode join; final boolean correlate = variablesSet.size() == 1; RexNode postCondition = literal(true); if (correlate) { final CorrelationId id = Iterables.getOnlyElement(variablesSet); final ImmutableBitSet requiredColumns = RelOptUtil.correlationColumns(id, right.rel); if (!RelOptUtil.notContainsCorrelation(left.rel, id, Litmus.IGNORE)) { throw new IllegalArgumentException("variable " + id + " must not be used by left input to correlation"); } switch (joinType) { case LEFT: // Correlate does not have an ON clause. // For a LEFT correlate, predicate must be evaluated first. // For INNER, we can defer. stack.push(right); filter(condition.accept(new Shifter(left.rel, id, right.rel))); right = stack.pop(); break; default: postCondition = condition; } join = correlateFactory.createCorrelate(left.rel, right.rel, id, requiredColumns, SemiJoinType.of(joinType)); } else { join = joinFactory.createJoin(left.rel, right.rel, condition, variablesSet, joinType, false); } final ImmutableList.Builder fields = ImmutableList.builder(); fields.addAll(left.fields); fields.addAll(right.fields); stack.push(new Frame(join, fields.build())); filter(postCondition); return this; } /** Creates a {@link Join} using USING syntax. * *

For each of the field names, both left and right inputs must have a * field of that name. Constructs a join condition that the left and right * fields are equal. * * @param joinType Join type * @param fieldNames Field names */ public RelBuilder join(JoinRelType joinType, String... fieldNames) { final List conditions = new ArrayList<>(); for (String fieldName : fieldNames) { conditions.add( call(SqlStdOperatorTable.EQUALS, field(2, 0, fieldName), field(2, 1, fieldName))); } return join(joinType, conditions); } /** Creates a {@link SemiJoin}. */ public RelBuilder semiJoin(Iterable conditions) { final Frame right = stack.pop(); final RelNode semiJoin = semiJoinFactory.createSemiJoin(peek(), right.rel, and(conditions)); replaceTop(semiJoin); return this; } /** Creates a {@link SemiJoin}. */ public RelBuilder semiJoin(RexNode... conditions) { return semiJoin(ImmutableList.copyOf(conditions)); } /** Creates a {@link org.apache.calcite.rel.core.SemiJoin}, which represents anti-join. */ public RelBuilder antiJoin(Iterable conditions) { final Frame right = stack.pop(); final RelNode semiJoin = semiJoinFactory.createAntiJoin(peek(), right.rel, and(conditions)); replaceTop(semiJoin); return this; } /** Creates a {@link org.apache.calcite.rel.core.SemiJoin}, which represents anti-join. */ public RelBuilder antiJoin(RexNode... conditions) { return antiJoin(ImmutableList.copyOf(conditions)); } /** Assigns a table alias to the top entry on the stack. */ public RelBuilder as(final String alias) { final Frame pair = stack.pop(); List newFields = Lists.transform(pair.fields, field -> new Field(ImmutableSet.builder().addAll(field.left) .add(alias).build(), field.right)); stack.push(new Frame(pair.rel, ImmutableList.copyOf(newFields))); return this; } /** Creates a {@link Values}. * *

The {@code values} array must have the same number of entries as * {@code fieldNames}, or an integer multiple if you wish to create multiple * rows. * *

If there are zero rows, or if all values of a any column are * null, this method cannot deduce the type of columns. For these cases, * call {@link #values(Iterable, RelDataType)}. * * @param fieldNames Field names * @param values Values */ public RelBuilder values(String[] fieldNames, Object... values) { if (fieldNames == null || fieldNames.length == 0 || values.length % fieldNames.length != 0 || values.length < fieldNames.length) { throw new IllegalArgumentException( "Value count must be a positive multiple of field count"); } final int rowCount = values.length / fieldNames.length; for (Ord fieldName : Ord.zip(fieldNames)) { if (allNull(values, fieldName.i, fieldNames.length)) { throw new IllegalArgumentException("All values of field '" + fieldName.e + "' are null; cannot deduce type"); } } final ImmutableList> tupleList = tupleList(fieldNames.length, values); final RelDataTypeFactory typeFactory = cluster.getTypeFactory(); final RelDataTypeFactory.Builder builder = typeFactory.builder(); for (final Ord fieldName : Ord.zip(fieldNames)) { final String name = fieldName.e != null ? fieldName.e : "expr$" + fieldName.i; final RelDataType type = typeFactory.leastRestrictive( new AbstractList() { public RelDataType get(int index) { return tupleList.get(index).get(fieldName.i).getType(); } public int size() { return rowCount; } }); builder.add(name, type); } final RelDataType rowType = builder.build(); return values(tupleList, rowType); } private ImmutableList> tupleList(int columnCount, Object[] values) { final ImmutableList.Builder> listBuilder = ImmutableList.builder(); final List valueList = new ArrayList<>(); for (int i = 0; i < values.length; i++) { Object value = values[i]; valueList.add((RexLiteral) literal(value)); if ((i + 1) % columnCount == 0) { listBuilder.add(ImmutableList.copyOf(valueList)); valueList.clear(); } } return listBuilder.build(); } /** Returns whether all values for a given column are null. */ private boolean allNull(Object[] values, int column, int columnCount) { for (int i = column; i < values.length; i += columnCount) { if (values[i] != null) { return false; } } return true; } /** Creates a relational expression that reads from an input and throws * all of the rows away. * *

Note that this method always pops one relational expression from the * stack. {@code values}, in contrast, does not pop any relational * expressions, and always produces a leaf. * *

The default implementation creates a {@link Values} with the same * specified row type as the input, and ignores the input entirely. * But schema-on-query systems such as Drill might override this method to * create a relation expression that retains the input, just to read its * schema. */ public RelBuilder empty() { final Frame frame = stack.pop(); return values(frame.rel.getRowType()); } /** Creates a {@link Values} with a specified row type. * *

This method can handle cases that {@link #values(String[], Object...)} * cannot, such as all values of a column being null, or there being zero * rows. * * @param rowType Row type * @param columnValues Values */ public RelBuilder values(RelDataType rowType, Object... columnValues) { final ImmutableList> tupleList = tupleList(rowType.getFieldCount(), columnValues); RelNode values = valuesFactory.createValues(cluster, rowType, ImmutableList.copyOf(tupleList)); push(values); return this; } /** Creates a {@link Values} with a specified row type. * *

This method can handle cases that {@link #values(String[], Object...)} * cannot, such as all values of a column being null, or there being zero * rows. * * @param tupleList Tuple list * @param rowType Row type */ public RelBuilder values(Iterable> tupleList, RelDataType rowType) { RelNode values = valuesFactory.createValues(cluster, rowType, copy(tupleList)); push(values); return this; } /** Creates a {@link Values} with a specified row type and * zero rows. * * @param rowType Row type */ public RelBuilder values(RelDataType rowType) { return values(ImmutableList.>of(), rowType); } /** Converts an iterable of lists into an immutable list of immutable lists * with the same contents. Returns the same object if possible. */ private static ImmutableList> copy( Iterable> tupleList) { final ImmutableList.Builder> builder = ImmutableList.builder(); int changeCount = 0; for (List literals : tupleList) { final ImmutableList literals2 = ImmutableList.copyOf(literals); builder.add(literals2); if (literals != literals2) { ++changeCount; } } if (changeCount == 0) { // don't make a copy if we don't have to //noinspection unchecked return (ImmutableList>) tupleList; } return builder.build(); } /** Creates a limit without a sort. */ public RelBuilder limit(int offset, int fetch) { return sortLimit(offset, fetch, ImmutableList.of()); } /** Creates a {@link Sort} by field ordinals. * *

Negative fields mean descending: -1 means field(0) descending, * -2 means field(1) descending, etc. */ public RelBuilder sort(int... fields) { final ImmutableList.Builder builder = ImmutableList.builder(); for (int field : fields) { builder.add(field < 0 ? desc(field(-field - 1)) : field(field)); } return sortLimit(-1, -1, builder.build()); } /** Creates a {@link Sort} by expressions. */ public RelBuilder sort(RexNode... nodes) { return sortLimit(-1, -1, ImmutableList.copyOf(nodes)); } /** Creates a {@link Sort} by expressions. */ public RelBuilder sort(Iterable nodes) { return sortLimit(-1, -1, nodes); } /** Creates a {@link Sort} by expressions, with limit and offset. */ public RelBuilder sortLimit(int offset, int fetch, RexNode... nodes) { return sortLimit(offset, fetch, ImmutableList.copyOf(nodes)); } /** Creates a {@link Sort} by a list of expressions, with limit and offset. * * @param offset Number of rows to skip; non-positive means don't skip any * @param fetch Maximum number of rows to fetch; negative means no limit * @param nodes Sort expressions */ public RelBuilder sortLimit(int offset, int fetch, Iterable nodes) { final List fieldCollations = new ArrayList<>(); final List originalExtraNodes = fields(); final List extraNodes = new ArrayList<>(originalExtraNodes); for (RexNode node : nodes) { final RelFieldCollation collation = collation(node, RelFieldCollation.Direction.ASCENDING, null, extraNodes); if (!RelCollations.ordinals(fieldCollations) .contains(collation.getFieldIndex())) { fieldCollations.add(collation); } } final RexNode offsetNode = offset <= 0 ? null : literal(offset); final RexNode fetchNode = fetch < 0 ? null : literal(fetch); if (offsetNode == null && fetch == 0) { return empty(); } if (offsetNode == null && fetchNode == null && fieldCollations.isEmpty()) { return this; // sort is trivial } final boolean addedFields = extraNodes.size() > originalExtraNodes.size(); if (fieldCollations.isEmpty()) { assert !addedFields; RelNode top = peek(); if (top instanceof Sort) { final Sort sort2 = (Sort) top; if (sort2.offset == null && sort2.fetch == null) { replaceTop(sort2.getInput()); final RelNode sort = sortFactory.createSort(peek(), sort2.collation, offsetNode, fetchNode); replaceTop(sort); return this; } } if (top instanceof Project) { final Project project = (Project) top; if (project.getInput() instanceof Sort) { final Sort sort2 = (Sort) project.getInput(); if (sort2.offset == null && sort2.fetch == null) { final RelNode sort = sortFactory.createSort(sort2.getInput(), sort2.collation, offsetNode, fetchNode); replaceTop( projectFactory.createProject(sort, project.getProjects(), Pair.right(project.getNamedProjects()))); return this; } } } } if (addedFields) { project(extraNodes); } final RelNode sort = sortFactory.createSort(peek(), RelCollations.of(fieldCollations), offsetNode, fetchNode); replaceTop(sort); if (addedFields) { project(originalExtraNodes); } return this; } private static RelFieldCollation collation(RexNode node, RelFieldCollation.Direction direction, RelFieldCollation.NullDirection nullDirection, List extraNodes) { switch (node.getKind()) { case INPUT_REF: return new RelFieldCollation(((RexInputRef) node).getIndex(), direction, Util.first(nullDirection, direction.defaultNullDirection())); case DESCENDING: return collation(((RexCall) node).getOperands().get(0), RelFieldCollation.Direction.DESCENDING, nullDirection, extraNodes); case NULLS_FIRST: return collation(((RexCall) node).getOperands().get(0), direction, RelFieldCollation.NullDirection.FIRST, extraNodes); case NULLS_LAST: return collation(((RexCall) node).getOperands().get(0), direction, RelFieldCollation.NullDirection.LAST, extraNodes); default: final int fieldIndex = extraNodes.size(); extraNodes.add(node); return new RelFieldCollation(fieldIndex, direction, Util.first(nullDirection, direction.defaultNullDirection())); } } /** * Creates a projection that converts the current relational expression's * output to a desired row type. * * @param castRowType row type after cast * @param rename if true, use field names from castRowType; if false, * preserve field names from rel */ public RelBuilder convert(RelDataType castRowType, boolean rename) { final RelNode r = build(); final RelNode r2 = RelOptUtil.createCastRel(r, castRowType, rename, projectFactory); push(r2); return this; } public RelBuilder permute(Mapping mapping) { assert mapping.getMappingType().isSingleSource(); assert mapping.getMappingType().isMandatorySource(); if (mapping.isIdentity()) { return this; } final List exprList = new ArrayList<>(); for (int i = 0; i < mapping.getTargetCount(); i++) { exprList.add(field(mapping.getSource(i))); } return project(exprList); } public RelBuilder aggregate(GroupKey groupKey, List aggregateCalls) { return aggregate(groupKey, Lists.transform(aggregateCalls, AggCallImpl2::new)); } /** Creates a {@link Match}. */ public RelBuilder match(RexNode pattern, boolean strictStart, boolean strictEnd, Map patternDefinitions, Iterable measureList, RexNode after, Map> subsets, RexNode rowsPerMatch, Iterable partitionKeys, Iterable orderKeys, RexNode interval) { final List fieldCollations = new ArrayList<>(); for (RexNode orderKey : orderKeys) { final RelFieldCollation.Direction direction; switch (orderKey.getKind()) { case DESCENDING: direction = RelFieldCollation.Direction.DESCENDING; orderKey = ((RexCall) orderKey).getOperands().get(0); break; case NULLS_FIRST: case NULLS_LAST: throw new AssertionError(); default: direction = RelFieldCollation.Direction.ASCENDING; break; } final RelFieldCollation.NullDirection nullDirection = direction.defaultNullDirection(); final RexInputRef ref = (RexInputRef) orderKey; fieldCollations.add( new RelFieldCollation(ref.getIndex(), direction, nullDirection)); } final RelDataTypeFactory.Builder typeBuilder = cluster.getTypeFactory().builder(); for (RexNode partitionKey : partitionKeys) { typeBuilder.add(partitionKey.toString(), partitionKey.getType()); } final boolean allRows = rowsPerMatch != null && (((RexLiteral) rowsPerMatch).getValue() == SqlMatchRecognize.RowsPerMatchOption.ALL_ROWS || ((RexLiteral) rowsPerMatch).getValue() == SqlMatchRecognize.RowsPerMatchOption.ALL_ROWS_WITH_TIMEOUT); if (allRows) { for (RexNode orderKey : orderKeys) { if (!typeBuilder.nameExists(orderKey.toString())) { typeBuilder.add(orderKey.toString(), orderKey.getType()); } } final RelDataType inputRowType = peek().getRowType(); for (RelDataTypeField fs : inputRowType.getFieldList()) { if (!typeBuilder.nameExists(fs.getName())) { typeBuilder.add(fs); } } } final ImmutableMap.Builder measures = ImmutableMap.builder(); for (RexNode measure : measureList) { List operands = ((RexCall) measure).getOperands(); String alias = operands.get(1).toString(); typeBuilder.add(alias, operands.get(0).getType()); measures.put(alias, operands.get(0)); } final RelNode match = matchFactory.createMatch(peek(), pattern, typeBuilder.build(), strictStart, strictEnd, patternDefinitions, measures.build(), after, subsets, rowsPerMatch, ImmutableList.copyOf(partitionKeys), RelCollations.of(fieldCollations), interval); stack.push(new Frame(match)); return this; } /** Clears the stack. * *

The builder's state is now the same as when it was created. */ public void clear() { stack.clear(); } /** Information necessary to create a call to an aggregate function. * * @see RelBuilder#aggregateCall */ public interface AggCall { } /** Information necessary to create the GROUP BY clause of an Aggregate. * * @see RelBuilder#groupKey */ public interface GroupKey { /** Assigns an alias to this group key. * *

Used to assign field names in the {@code group} operation. */ GroupKey alias(String alias); } /** Implementation of {@link GroupKey}. */ protected static class GroupKeyImpl implements GroupKey { final ImmutableList nodes; final boolean indicator; final ImmutableList> nodeLists; final String alias; GroupKeyImpl(ImmutableList nodes, boolean indicator, ImmutableList> nodeLists, String alias) { this.nodes = Objects.requireNonNull(nodes); assert !indicator; this.indicator = indicator; this.nodeLists = nodeLists; this.alias = alias; } @Override public String toString() { return alias == null ? nodes.toString() : nodes + " as " + alias; } public GroupKey alias(String alias) { return Objects.equals(this.alias, alias) ? this : new GroupKeyImpl(nodes, indicator, nodeLists, alias); } } /** Implementation of {@link AggCall}. */ private static class AggCallImpl implements AggCall { private final SqlAggFunction aggFunction; private final boolean distinct; private final boolean approximate; private final RexNode filter; private final String alias; private final ImmutableList operands; AggCallImpl(SqlAggFunction aggFunction, boolean distinct, boolean approximate, RexNode filter, String alias, ImmutableList operands) { this.aggFunction = aggFunction; this.distinct = distinct; this.approximate = approximate; this.filter = filter; this.alias = alias; this.operands = operands; } } /** Implementation of {@link AggCall} that wraps an * {@link AggregateCall}. */ private static class AggCallImpl2 implements AggCall { private final AggregateCall aggregateCall; AggCallImpl2(AggregateCall aggregateCall) { this.aggregateCall = Objects.requireNonNull(aggregateCall); } } /** Collects the extra expressions needed for {@link #aggregate}. * *

The extra expressions come from the group key and as arguments to * aggregate calls, and later there will be a {@link #project} or a * {@link #rename(List)} if necessary. */ private static class Registrar { final List extraNodes = new ArrayList<>(); final List names = new ArrayList<>(); int registerExpression(RexNode node) { switch (node.getKind()) { case AS: final List operands = ((RexCall) node).operands; int i = registerExpression(operands.get(0)); names.set(i, RexLiteral.stringValue(operands.get(1))); return i; } int i = extraNodes.indexOf(node); if (i < 0) { i = extraNodes.size(); extraNodes.add(node); names.add(null); } return i; } List registerExpressions(Iterable nodes) { final List builder = new ArrayList<>(); for (RexNode node : nodes) { builder.add(registerExpression(node)); } return builder; } } /** Builder stack frame. * *

Describes a previously created relational expression and * information about how table aliases map into its row type. */ private static class Frame { final RelNode rel; final ImmutableList fields; private Frame(RelNode rel, ImmutableList fields) { this.rel = rel; this.fields = fields; } private Frame(RelNode rel) { String tableAlias = deriveAlias(rel); ImmutableList.Builder builder = ImmutableList.builder(); ImmutableSet aliases = tableAlias == null ? ImmutableSet.of() : ImmutableSet.of(tableAlias); for (RelDataTypeField field : rel.getRowType().getFieldList()) { builder.add(new Field(aliases, field)); } this.rel = rel; this.fields = builder.build(); } private static String deriveAlias(RelNode rel) { if (rel instanceof TableScan) { final List names = rel.getTable().getQualifiedName(); if (!names.isEmpty()) { return Util.last(names); } } return null; } List fields() { return Pair.right(fields); } } /** A field that belongs to a stack {@link Frame}. */ private static class Field extends Pair, RelDataTypeField> { Field(ImmutableSet left, RelDataTypeField right) { super(left, right); } } /** Shuttle that shifts a predicate's inputs to the left, replacing early * ones with references to a * {@link RexCorrelVariable}. */ private class Shifter extends RexShuttle { private final RelNode left; private final CorrelationId id; private final RelNode right; Shifter(RelNode left, CorrelationId id, RelNode right) { this.left = left; this.id = id; this.right = right; } public RexNode visitInputRef(RexInputRef inputRef) { final RelDataType leftRowType = left.getRowType(); final RexBuilder rexBuilder = getRexBuilder(); final int leftCount = leftRowType.getFieldCount(); if (inputRef.getIndex() < leftCount) { final RexNode v = rexBuilder.makeCorrel(leftRowType, id); return rexBuilder.makeFieldAccess(v, inputRef.getIndex()); } else { return rexBuilder.makeInputRef(right, inputRef.getIndex() - leftCount); } } } } // End RelBuilder.java





© 2015 - 2024 Weber Informatics LLC | Privacy Policy