@Value.Enclosing public class SqlToRelConverter extends Object
SqlNode objects) into a relational algebra
expression (consisting of RelNode objects).
The public entry points are: convertQuery(org.apache.calcite.sql.SqlNode, boolean, boolean),
convertExpression(SqlNode).
| Modifier and Type | Class and Description |
|---|---|
protected class |
SqlToRelConverter.AggConverter
Converts expressions to aggregates.
|
protected class |
SqlToRelConverter.Blackboard
Workspace for translating an individual SELECT statement (or sub-SELECT).
|
static interface |
SqlToRelConverter.Config
Interface to define the configuration for a SqlToRelConverter.
|
static class |
SqlToRelConverter.SqlIdentifierFinder
Visitor that looks for an SqlIdentifier inside a tree of
SqlNode objects and return Boolean.TRUE when it finds
one. |
| Modifier and Type | Field and Description |
|---|---|
protected Prepare.CatalogReader |
catalogReader |
protected RelOptCluster |
cluster |
SqlToRelConverter.Config |
config |
static SqlToRelConverter.Config |
CONFIG
Default configuration.
|
static int |
DEFAULT_IN_SUB_QUERY_THRESHOLD
Size of the smallest IN list that will be converted to a semijoin to a
static table.
|
static int |
DEFAULT_IN_SUBQUERY_THRESHOLD
Deprecated.
|
protected Map<RelNode,Integer> |
leaves |
protected RexBuilder |
rexBuilder |
protected static org.slf4j.Logger |
SQL2REL_LOGGER |
protected RelDataTypeFactory |
typeFactory |
@Nullable SqlValidator |
validator |
RelOptTable.ViewExpander |
viewExpander |
| Constructor and Description |
|---|
SqlToRelConverter(RelOptTable.ViewExpander viewExpander,
SqlValidator validator,
Prepare.CatalogReader catalogReader,
RelOptCluster cluster,
SqlRexConvertletTable convertletTable)
Deprecated.
|
SqlToRelConverter(RelOptTable.ViewExpander viewExpander,
@Nullable SqlValidator validator,
Prepare.CatalogReader catalogReader,
RelOptCluster cluster,
SqlRexConvertletTable convertletTable,
SqlToRelConverter.Config config) |
SqlToRelConverter(RelOptTable.ViewExpander viewExpander,
SqlValidator validator,
Prepare.CatalogReader catalogReader,
RelOptPlanner planner,
RexBuilder rexBuilder,
SqlRexConvertletTable convertletTable)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addConvertedNonCorrSubqs(Map<SqlNode,RexNode> alreadyConvertedNonCorrSubqs)
Adds to the current map of non-correlated converted sub-queries the
elements from another map that contains non-correlated sub-queries that
have been converted by another SqlToRelConverter.
|
protected RexNode |
adjustInputRef(SqlToRelConverter.Blackboard bb,
RexInputRef inputRef)
Adjusts the type of a reference to an input field to account for nulls
introduced by outer joins; and adjusts the offset to match the physical
implementation.
|
protected void |
afterTableFunction(SqlToRelConverter.Blackboard bb,
SqlCall call,
LogicalTableFunctionScan callRel) |
protected void |
collectInsertTargets(SqlInsert call,
RexNode sourceRef,
List<String> targetColumnNames,
List<RexNode> columnExprs)
Given an INSERT statement, collects the list of names to be populated and
the expressions to put in them.
|
static SqlToRelConverter.Config |
config()
Returns a default
SqlToRelConverter.Config. |
protected void |
convertAgg(SqlToRelConverter.Blackboard bb,
SqlSelect select,
List<SqlNode> orderExprList)
Converts the SELECT, GROUP BY and HAVING clauses of an aggregate query.
|
protected void |
convertCollectionTable(SqlToRelConverter.Blackboard bb,
SqlCall call) |
protected RelNode |
convertColumnList(SqlInsert call,
RelNode source)
Creates a source for an INSERT statement.
|
RexDynamicParam |
convertDynamicParam(SqlDynamicParam dynamicParam) |
RexNode |
convertExpression(SqlNode node)
|
RexNode |
convertExpression(SqlNode node,
Map<String,RexNode> nameToNodeMap)
|
protected @Nullable RexNode |
convertExtendedExpression(SqlNode node,
SqlToRelConverter.Blackboard bb)
Converts a non-standard expression.
|
protected void |
convertFrom(SqlToRelConverter.Blackboard bb,
@Nullable SqlNode from) |
protected void |
convertFrom(SqlToRelConverter.Blackboard bb,
@Nullable SqlNode from,
@Nullable List<String> fieldNames)
Converts a FROM clause into a relational expression.
|
protected RelNode |
convertInsert(SqlInsert call) |
protected void |
convertMatchRecognize(SqlToRelConverter.Blackboard bb,
SqlMatchRecognize matchRecognize) |
protected void |
convertOrder(SqlSelect select,
SqlToRelConverter.Blackboard bb,
RelCollation collation,
List<SqlNode> orderExprList,
@Nullable SqlNode offset,
@Nullable SqlNode fetch)
Converts a query's ORDER BY clause, if any.
|
protected RelFieldCollation |
convertOrderItem(SqlSelect select,
SqlNode orderItem,
List<SqlNode> extraExprs,
RelFieldCollation.Direction direction,
RelFieldCollation.NullDirection nullDirection) |
protected void |
convertPivot(SqlToRelConverter.Blackboard bb,
SqlPivot pivot) |
RelRoot |
convertQuery(SqlNode query,
boolean needsValidation,
boolean top)
Converts an unvalidated query's parse tree into a relational expression.
|
protected RelRoot |
convertQueryRecursive(SqlNode query,
boolean top,
@Nullable RelDataType targetRowType)
Recursively converts a query to a relational expression.
|
RelNode |
convertSelect(SqlSelect select,
boolean top)
Converts a SELECT statement's parse tree into a relational expression.
|
protected void |
convertSelectImpl(SqlToRelConverter.Blackboard bb,
SqlSelect select)
Implementation of
convertSelect(SqlSelect, boolean);
derived class may override. |
protected RelNode |
convertSetOp(SqlCall call)
Converts a set operation (UNION, INTERSECT, MINUS) into relational
expressions.
|
RelNode |
convertToSingleValueSubq(SqlNode query,
RelNode plan)
Converts the RelNode tree for a select statement to a select that
produces a single value.
|
protected void |
convertUnpivot(SqlToRelConverter.Blackboard bb,
SqlUnpivot unpivot) |
RelNode |
convertValues(SqlCall values,
@Nullable RelDataType targetRowType)
Converts a SELECT statement's parse tree into a relational expression.
|
RelRoot |
convertWith(SqlWith with,
boolean top)
Converts a WITH sub-query into a relational expression.
|
protected void |
createAggImpl(SqlToRelConverter.Blackboard bb,
SqlToRelConverter.AggConverter aggConverter,
SqlNodeList selectList,
@Nullable SqlNodeList groupList,
@Nullable SqlNode having,
List<SqlNode> orderExprList) |
protected RelNode |
createAggregate(SqlToRelConverter.Blackboard bb,
ImmutableBitSet groupSet,
com.google.common.collect.ImmutableList<ImmutableBitSet> groupSets,
List<AggregateCall> aggCalls)
Creates an Aggregate.
|
protected SqlToRelConverter.Blackboard |
createBlackboard(@Nullable SqlValidatorScope scope,
@Nullable Map<String,RexNode> nameToNodeMap,
boolean top)
Factory method for creating translation workspace.
|
protected RelNode |
createJoin(SqlToRelConverter.Blackboard bb,
RelNode leftRel,
RelNode rightRel,
RexNode joinCond,
JoinRelType joinType) |
RelNode |
decorrelate(SqlNode query,
RelNode rootRel)
If sub-query is correlated and decorrelation is enabled, performs
decorrelation.
|
protected RelNode |
decorrelateQuery(RelNode rootRel) |
protected boolean |
enableDecorrelation()
Deprecated.
|
protected void |
extraSelectItems(SqlToRelConverter.Blackboard bb,
SqlSelect select,
List<RexNode> exprList,
List<String> nameList,
Collection<String> aliasList,
List<SqlMonotonicity> columnMonotonicityList)
Adds extra select items.
|
RelNode |
flattenTypes(RelNode rootRel,
boolean restructure) |
protected void |
gatherOrderExprs(SqlToRelConverter.Blackboard bb,
SqlSelect select,
@Nullable SqlNodeList orderList,
List<SqlNode> extraOrderExprs,
List<RelFieldCollation> collationList)
Creates a list of collations required to implement the ORDER BY clause,
if there is one.
|
RelOptCluster |
getCluster()
Returns the RelOptCluster in use.
|
int |
getDynamicParamCount()
Returns the number of dynamic parameters encountered during translation;
this must only be called after
convertQuery(org.apache.calcite.sql.SqlNode, boolean, boolean). |
int |
getDynamicParamCountInExplain(boolean increment)
Returns the current count of the number of dynamic parameters in an
EXPLAIN PLAN statement.
|
RelDataType |
getDynamicParamType(int index)
Returns the type inferred for a dynamic parameter.
|
protected int |
getInSubqueryThreshold()
Deprecated.
|
Map<SqlNode,RexNode> |
getMapConvertedNonCorrSubqs()
Returns the mapping of non-correlated sub-queries that have been converted
to the constants that they evaluate to.
|
RexBuilder |
getRexBuilder()
Returns the row-expression builder.
|
protected List<RelDataTypeField> |
getSystemFields()
Returns a list of fields to be prefixed to each relational expression.
|
protected RelOptTable |
getTargetTable(SqlNode call) |
static boolean |
isOrdered(SqlNode query) |
boolean |
isTrimUnusedFields()
Deprecated.
|
protected RelFieldTrimmer |
newFieldTrimmer()
Creates a RelFieldTrimmer.
|
void |
setDynamicParamCountInExplain(int explainParamCount)
Sets the number of dynamic parameters in the current EXPLAIN PLAN
statement.
|
void |
setSubQueryConverter(SubQueryConverter converter)
Sets a new SubQueryConverter.
|
RelNode |
toRel(RelOptTable table,
List<RelHint> hints) |
RelNode |
trimUnusedFields(boolean ordered,
RelNode rootRel)
Walks over a tree of relational expressions, replacing each
RelNode with a 'slimmed down' relational expression that projects
only the fields required by its consumer. |
public static final SqlToRelConverter.Config CONFIG
protected static final org.slf4j.Logger SQL2REL_LOGGER
public static final int DEFAULT_IN_SUB_QUERY_THRESHOLD
@Deprecated public static final int DEFAULT_IN_SUBQUERY_THRESHOLD
public final @Nullable SqlValidator validator
protected final RexBuilder rexBuilder
protected final Prepare.CatalogReader catalogReader
protected final RelOptCluster cluster
protected final RelDataTypeFactory typeFactory
public final SqlToRelConverter.Config config
public final RelOptTable.ViewExpander viewExpander
@Deprecated public SqlToRelConverter(RelOptTable.ViewExpander viewExpander, SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptPlanner planner, RexBuilder rexBuilder, SqlRexConvertletTable convertletTable)
viewExpander - Preparing statementvalidator - ValidatorcatalogReader - Schemaplanner - PlannerrexBuilder - Rex builderconvertletTable - Expression converter@Deprecated public SqlToRelConverter(RelOptTable.ViewExpander viewExpander, SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptCluster cluster, SqlRexConvertletTable convertletTable)
public SqlToRelConverter(RelOptTable.ViewExpander viewExpander, @Nullable SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptCluster cluster, SqlRexConvertletTable convertletTable, SqlToRelConverter.Config config)
public RelOptCluster getCluster()
public RexBuilder getRexBuilder()
public int getDynamicParamCount()
convertQuery(org.apache.calcite.sql.SqlNode, boolean, boolean).public RelDataType getDynamicParamType(int index)
index - 0-based index of dynamic parameterpublic int getDynamicParamCountInExplain(boolean increment)
increment - if true, increment the countpublic Map<SqlNode,RexNode> getMapConvertedNonCorrSubqs()
public void addConvertedNonCorrSubqs(Map<SqlNode,RexNode> alreadyConvertedNonCorrSubqs)
alreadyConvertedNonCorrSubqs - the other mappublic void setSubQueryConverter(SubQueryConverter converter)
converter - new SubQueryConverterpublic void setDynamicParamCountInExplain(int explainParamCount)
explainParamCount - number of dynamic parameters in the statementpublic RelNode decorrelate(SqlNode query, RelNode rootRel)
query - QueryrootRel - Root relational expressionpublic RelNode trimUnusedFields(boolean ordered, RelNode rootRel)
RelNode with a 'slimmed down' relational expression that projects
only the fields required by its consumer.
This may make things easier for the optimizer, by removing crud that
would expand the search space, but is difficult for the optimizer itself
to do it, because optimizer rules must preserve the number and type of
fields. Hence, this transform that operates on the entire tree, similar
to the type-flattening transform.
Currently this functionality is disabled in farrago/luciddb; the default implementation of this method does nothing.
ordered - Whether the relational expression must produce results in
a particular order (typically because it has an ORDER BY at top level)rootRel - Relational expression that is at the root of the treeprotected RelFieldTrimmer newFieldTrimmer()
public RelRoot convertQuery(SqlNode query, boolean needsValidation, boolean top)
query - Query to convertneedsValidation - Whether to validate the query before converting;
false if the query has already been
validated.top - Whether the query is top-level, say if its result
will become a JDBC result set; false if
the query will be part of a view.public static boolean isOrdered(SqlNode query)
public RelNode convertSelect(SqlSelect select, boolean top)
protected SqlToRelConverter.Blackboard createBlackboard(@Nullable SqlValidatorScope scope, @Nullable Map<String,RexNode> nameToNodeMap, boolean top)
protected void convertSelectImpl(SqlToRelConverter.Blackboard bb, SqlSelect select)
convertSelect(SqlSelect, boolean);
derived class may override.protected void convertOrder(SqlSelect select, SqlToRelConverter.Blackboard bb, RelCollation collation, List<SqlNode> orderExprList, @Nullable SqlNode offset, @Nullable SqlNode fetch)
Ignores the ORDER BY clause if the query is not top-level and FETCH or OFFSET are not present.
select - Querybb - Blackboardcollation - Collation listorderExprList - Method populates this list with orderBy expressions
not present in selectListoffset - Expression for number of rows to discard before
returning first rowfetch - Expression for number of rows to fetchpublic RelNode convertToSingleValueSubq(SqlNode query, RelNode plan)
query - the queryplan - the original RelNode tree corresponding to the statement@Deprecated protected int getInSubqueryThreshold()
convertInToOr(org.apache.calcite.sql2rel.SqlToRelConverter.Blackboard, java.util.List<org.apache.calcite.rex.RexNode>, org.apache.calcite.sql.SqlNodeList, org.apache.calcite.sql.fun.SqlInOperator) is used.
Lists of this size or greater will instead be converted to use a join
against an inline table
(LogicalValues) rather than a
predicate. A threshold of 0 forces usage of an inline table in all cases; a
threshold of Integer.MAX_VALUE forces usage of OR in all casesDEFAULT_IN_SUB_QUERY_THRESHOLDpublic RexNode convertExpression(SqlNode node)
node - Expression to translatepublic RexNode convertExpression(SqlNode node, Map<String,RexNode> nameToNodeMap)
SqlNode to RexNode format,
mapping identifier references to predefined expressions.node - Expression to translatenameToNodeMap - map from String to RexNode; when an
SqlIdentifier is encountered, it is used as a
key and translated to the corresponding value from
this mapprotected @Nullable RexNode convertExtendedExpression(SqlNode node, SqlToRelConverter.Blackboard bb)
This method is an extension-point that derived classes can override. If this method returns a null result, the normal expression translation process will proceed. The default implementation always returns null.
node - Expressionbb - Blackboardprotected void convertFrom(SqlToRelConverter.Blackboard bb, @Nullable SqlNode from)
protected void convertFrom(SqlToRelConverter.Blackboard bb, @Nullable SqlNode from, @Nullable List<String> fieldNames)
bb - Scope within which to resolve identifiersfrom - FROM clause of a query. Examples include:
fieldNames - Field aliases, usually come from AS clause, or nullprotected void convertMatchRecognize(SqlToRelConverter.Blackboard bb, SqlMatchRecognize matchRecognize)
protected void convertPivot(SqlToRelConverter.Blackboard bb, SqlPivot pivot)
protected void convertUnpivot(SqlToRelConverter.Blackboard bb, SqlUnpivot unpivot)
protected void convertCollectionTable(SqlToRelConverter.Blackboard bb, SqlCall call)
protected void afterTableFunction(SqlToRelConverter.Blackboard bb, SqlCall call, LogicalTableFunctionScan callRel)
protected RelNode createJoin(SqlToRelConverter.Blackboard bb, RelNode leftRel, RelNode rightRel, RexNode joinCond, JoinRelType joinType)
protected List<RelDataTypeField> getSystemFields()
protected void convertAgg(SqlToRelConverter.Blackboard bb, SqlSelect select, List<SqlNode> orderExprList)
This method extracts SELECT, GROUP BY and HAVING clauses, and creates
an SqlToRelConverter.AggConverter, then delegates to createAggImpl(org.apache.calcite.sql2rel.SqlToRelConverter.Blackboard, org.apache.calcite.sql2rel.SqlToRelConverter.AggConverter, org.apache.calcite.sql.SqlNodeList, org.apache.calcite.sql.SqlNodeList, org.apache.calcite.sql.SqlNode, java.util.List<org.apache.calcite.sql.SqlNode>).
Derived class may override this method to change any of those clauses or
specify a different SqlToRelConverter.AggConverter.
bb - Scope within which to resolve identifiersselect - QueryorderExprList - Additional expressions needed to implement ORDER BYprotected final void createAggImpl(SqlToRelConverter.Blackboard bb, SqlToRelConverter.AggConverter aggConverter, SqlNodeList selectList, @Nullable SqlNodeList groupList, @Nullable SqlNode having, List<SqlNode> orderExprList)
protected RelNode createAggregate(SqlToRelConverter.Blackboard bb, ImmutableBitSet groupSet, com.google.common.collect.ImmutableList<ImmutableBitSet> groupSets, List<AggregateCall> aggCalls)
In case the aggregate rel changes the order in which it projects
fields, the groupExprProjection parameter is provided, and
the implementation of this method may modify it.
The sortedCount parameter is the number of expressions
known to be monotonic. These expressions must be on the leading edge of
the grouping keys. The default implementation of this method ignores this
parameter.
bb - BlackboardgroupSet - Bit set of ordinals of grouping columnsgroupSets - Grouping setsaggCalls - Array of calls to aggregate functionspublic RexDynamicParam convertDynamicParam(SqlDynamicParam dynamicParam)
protected void gatherOrderExprs(SqlToRelConverter.Blackboard bb, SqlSelect select, @Nullable SqlNodeList orderList, List<SqlNode> extraOrderExprs, List<RelFieldCollation> collationList)
extraOrderExprs with any sort
expressions which are not in the select clause.bb - Scope within which to resolve identifiersselect - Select clause. Never null, because we invent a
dummy SELECT if ORDER BY is applied to a set
operation (UNION etc.)orderList - Order by clause, may be nullextraOrderExprs - Sort expressions which are not in the select
clause (output)collationList - List of collations (output)protected RelFieldCollation convertOrderItem(SqlSelect select, SqlNode orderItem, List<SqlNode> extraExprs, RelFieldCollation.Direction direction, RelFieldCollation.NullDirection nullDirection)
@Deprecated protected boolean enableDecorrelation()
@Deprecated public boolean isTrimUnusedFields()
protected RelRoot convertQueryRecursive(SqlNode query, boolean top, @Nullable RelDataType targetRowType)
query - Querytop - Whether this query is the top-level query of the
statementtargetRowType - Target row type, or nullprotected RelNode convertSetOp(SqlCall call)
call - Call to set operatorpublic RelNode toRel(RelOptTable table, List<RelHint> hints)
protected RelOptTable getTargetTable(SqlNode call)
protected RelNode convertColumnList(SqlInsert call, RelNode source)
If the column list is not specified, source expressions match target columns in order.
If the column list is specified, Source expressions are mapped to target columns by name via targetColumnList, and may not cover the entire target table. So, we'll make up a full row, using a combination of default values and the source expressions provided.
call - Insert expressionsource - Source relational expressionprotected void collectInsertTargets(SqlInsert call, RexNode sourceRef, List<String> targetColumnNames, List<RexNode> columnExprs)
call - Insert statementsourceRef - Expression representing a row from the source
relational expressiontargetColumnNames - List of target column names, to be populatedcolumnExprs - List of expressions, to be populatedprotected RexNode adjustInputRef(SqlToRelConverter.Blackboard bb, RexInputRef inputRef)
bb - BlackboardinputRef - Input refprotected void extraSelectItems(SqlToRelConverter.Blackboard bb, SqlSelect select, List<RexNode> exprList, List<String> nameList, Collection<String> aliasList, List<SqlMonotonicity> columnMonotonicityList)
bb - Blackboardselect - Select statement being translatedexprList - List of expressions in select clausenameList - List of names, one per columnaliasList - Collection of aliases that have been used
alreadycolumnMonotonicityList - List of monotonicity, one per columnpublic RelRoot convertWith(SqlWith with, boolean top)
public RelNode convertValues(SqlCall values, @Nullable RelDataType targetRowType)
public static SqlToRelConverter.Config config()
SqlToRelConverter.Config.Copyright © 2012-2022 Apache Software Foundation. All Rights Reserved.