Class SqlToRelConverter
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)
.
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected class
Workspace for translating an individual SELECT statement (or sub-SELECT).static interface
Interface to define the configuration for a SqlToRelConverter.static class
Visitor that looks for an SqlIdentifier inside a tree ofSqlNode
objects and returnBoolean.TRUE
when it finds one. -
Field Summary
Modifier and TypeFieldDescriptionprotected final Prepare.CatalogReader
protected final RelOptCluster
final SqlToRelConverter.Config
static final SqlToRelConverter.Config
Default configuration.static final int
Size of the smallest IN list that will be converted to a semijoin to a static table.static final int
Deprecated.protected final RexBuilder
protected static final org.slf4j.Logger
protected final RelDataTypeFactory
final @Nullable SqlValidator
final RelOptTable.ViewExpander
-
Constructor Summary
ConstructorDescriptionSqlToRelConverter
(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, RelOptCluster cluster, SqlRexConvertletTable convertletTable) Deprecated.SqlToRelConverter
(RelOptTable.ViewExpander viewExpander, SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptPlanner planner, RexBuilder rexBuilder, SqlRexConvertletTable convertletTable) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoid
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 defaultSqlToRelConverter.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
protected RelNode
convertColumnList
(SqlInsert call, RelNode source) Creates a source for an INSERT statement.convertDynamicParam
(SqlDynamicParam dynamicParam) convertExpression
(SqlNode node) convertExpression
(SqlNode node, Map<String, RexNode> nameToNodeMap) protected @Nullable RexNode
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) 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.convertSelect
(SqlSelect select, boolean top) Converts a SELECT statement's parse tree into a relational expression.protected void
convertSelectImpl
(SqlToRelConverter.Blackboard bb, SqlToRelConverter.Blackboard measureBb, SqlSelect select) Implementation ofconvertSelect(SqlSelect, boolean)
; derived class may override.protected RelNode
convertSetOp
(SqlCall call) Converts a set operation (UNION, INTERSECT, MINUS) into relational expressions.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) convertValues
(SqlCall values, @Nullable RelDataType targetRowType) Converts a SELECT statement's parse tree into a relational expression.convertWith
(SqlWith with, boolean top) Converts a WITH sub-query into a relational expression.protected RelNode
createAggregate
(SqlToRelConverter.Blackboard bb, ImmutableBitSet groupSet, com.google.common.collect.ImmutableList<ImmutableBitSet> groupSets, List<AggregateCall> aggCalls) Creates an Aggregate.protected RelNode
createAsofJoin
(SqlParserPos pos, SqlToRelConverter.Blackboard bb, RelNode leftRel, RelNode rightRel, RexNode joinCond, RexNode matchCondition, JoinRelType joinType) protected SqlToRelConverter.Blackboard
createBlackboard
(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) decorrelate
(SqlNode query, RelNode rootRel) If sub-query is correlated and decorrelation is enabled, performs decorrelation.protected RelNode
decorrelateQuery
(RelNode rootRel) protected boolean
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.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.Returns the RelOptCluster in use.int
Returns the number of dynamic parameters encountered during translation; this must only be called afterconvertQuery(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.getDynamicParamType
(int index) Returns the type inferred for a dynamic parameter.protected int
Deprecated.Returns the mapping of non-correlated sub-queries that have been converted to the constants that they evaluate to.Returns the row-expression builder.protected List<RelDataTypeField>
Returns a list of fields to be prefixed to each relational expression.protected RelOptTable
getTargetTable
(SqlNode call) static boolean
boolean
Deprecated.protected RelFieldTrimmer
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.toRel
(RelOptTable table, List<RelHint> hints) trimUnusedFields
(boolean ordered, RelNode rootRel) Walks over a tree of relational expressions, replacing eachRelNode
with a 'slimmed down' relational expression that projects only the fields required by its consumer.
-
Field Details
-
CONFIG
Default configuration. -
SQL2REL_LOGGER
protected static final org.slf4j.Logger SQL2REL_LOGGER -
DEFAULT_IN_SUB_QUERY_THRESHOLD
public static final int DEFAULT_IN_SUB_QUERY_THRESHOLDSize of the smallest IN list that will be converted to a semijoin to a static table.- See Also:
-
DEFAULT_IN_SUBQUERY_THRESHOLD
Deprecated.- See Also:
-
validator
-
rexBuilder
-
catalogReader
-
cluster
-
leaves
-
typeFactory
-
config
-
viewExpander
-
-
Constructor Details
-
SqlToRelConverter
@Deprecated public SqlToRelConverter(RelOptTable.ViewExpander viewExpander, SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptPlanner planner, RexBuilder rexBuilder, SqlRexConvertletTable convertletTable) Deprecated.Creates a converter.- Parameters:
viewExpander
- Preparing statementvalidator
- ValidatorcatalogReader
- Schemaplanner
- PlannerrexBuilder
- Rex builderconvertletTable
- Expression converter
-
SqlToRelConverter
@Deprecated public SqlToRelConverter(RelOptTable.ViewExpander viewExpander, SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptCluster cluster, SqlRexConvertletTable convertletTable) Deprecated. -
SqlToRelConverter
public SqlToRelConverter(RelOptTable.ViewExpander viewExpander, @Nullable SqlValidator validator, Prepare.CatalogReader catalogReader, RelOptCluster cluster, SqlRexConvertletTable convertletTable, SqlToRelConverter.Config config)
-
-
Method Details
-
getCluster
Returns the RelOptCluster in use. -
getRexBuilder
Returns the row-expression builder. -
getDynamicParamCount
public int getDynamicParamCount()Returns the number of dynamic parameters encountered during translation; this must only be called afterconvertQuery(org.apache.calcite.sql.SqlNode, boolean, boolean)
.- Returns:
- number of dynamic parameters
-
getDynamicParamType
Returns the type inferred for a dynamic parameter.- Parameters:
index
- 0-based index of dynamic parameter- Returns:
- inferred type, never null
-
getDynamicParamCountInExplain
public int getDynamicParamCountInExplain(boolean increment) Returns the current count of the number of dynamic parameters in an EXPLAIN PLAN statement.- Parameters:
increment
- if true, increment the count- Returns:
- the current count before the optional increment
-
getMapConvertedNonCorrSubqs
Returns the mapping of non-correlated sub-queries that have been converted to the constants that they evaluate to. -
addConvertedNonCorrSubqs
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.- Parameters:
alreadyConvertedNonCorrSubqs
- the other map
-
setSubQueryConverter
Sets a new SubQueryConverter. To have any effect, this must be called before any convert method.- Parameters:
converter
- new SubQueryConverter
-
setDynamicParamCountInExplain
public void setDynamicParamCountInExplain(int explainParamCount) Sets the number of dynamic parameters in the current EXPLAIN PLAN statement.- Parameters:
explainParamCount
- number of dynamic parameters in the statement
-
flattenTypes
-
decorrelate
If sub-query is correlated and decorrelation is enabled, performs decorrelation.- Parameters:
query
- QueryrootRel
- Root relational expression- Returns:
- New root relational expression after decorrelation
-
trimUnusedFields
Walks over a tree of relational expressions, replacing eachRelNode
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.
- Parameters:
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 tree- Returns:
- Trimmed relational expression
-
newFieldTrimmer
Creates a RelFieldTrimmer.- Returns:
- Field trimmer
-
convertQuery
Converts an unvalidated query's parse tree into a relational expression.- Parameters:
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.
-
isOrdered
-
convertSelect
Converts a SELECT statement's parse tree into a relational expression. -
createBlackboard
protected SqlToRelConverter.Blackboard createBlackboard(SqlValidatorScope scope, @Nullable Map<String, RexNode> nameToNodeMap, boolean top) Factory method for creating translation workspace. -
convertSelectImpl
protected void convertSelectImpl(SqlToRelConverter.Blackboard bb, SqlToRelConverter.Blackboard measureBb, SqlSelect select) Implementation ofconvertSelect(SqlSelect, boolean)
; derived class may override. -
convertOrder
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.Ignores the ORDER BY clause if the query is not top-level and FETCH or OFFSET are not present.
- Parameters:
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 fetch
-
convertToSingleValueSubq
Converts the RelNode tree for a select statement to a select that produces a single value.- Parameters:
query
- the queryplan
- the original RelNode tree corresponding to the statement- Returns:
- the converted RelNode tree
-
getInSubqueryThreshold
Deprecated.Gets the list size threshold under whichconvertInToOr(org.apache.calcite.sql2rel.SqlToRelConverter.Blackboard, java.util.List<org.apache.calcite.sql.SqlNode>, 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 cases- Returns:
- threshold, default
DEFAULT_IN_SUB_QUERY_THRESHOLD
-
convertExpression
- Parameters:
node
- Expression to translate- Returns:
- Converted expression
-
convertExpression
Converts an expression fromSqlNode
toRexNode
format, mapping identifier references to predefined expressions.- Parameters:
node
- Expression to translatenameToNodeMap
- map from String toRexNode
; when anSqlIdentifier
is encountered, it is used as a key and translated to the corresponding value from this map- Returns:
- Converted expression
-
convertExtendedExpression
protected @Nullable RexNode convertExtendedExpression(SqlNode node, SqlToRelConverter.Blackboard bb) Converts a non-standard expression.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.
- Parameters:
node
- Expressionbb
- Blackboard- Returns:
- null to proceed with the usual expression translation process
-
convertFrom
-
convertFrom
protected void convertFrom(SqlToRelConverter.Blackboard bb, @Nullable SqlNode from, @Nullable List<String> fieldNames) Converts a FROM clause into a relational expression.- Parameters:
bb
- Scope within which to resolve identifiersfrom
- FROM clause of a query. Examples include:- a single table ("SALES.EMP"),
- an aliased table ("EMP AS E"),
- a list of tables ("EMP, DEPT"),
- an ANSI Join expression ("EMP JOIN DEPT ON EMP.DEPTNO = DEPT.DEPTNO"),
- a VALUES clause ("VALUES ('Fred', 20)"),
- a query ("(SELECT * FROM EMP WHERE GENDER = 'F')"),
- or any combination of the above.
fieldNames
- Field aliases, usually come from AS clause, or null
-
convertMatchRecognize
protected void convertMatchRecognize(SqlToRelConverter.Blackboard bb, SqlMatchRecognize matchRecognize) -
convertPivot
-
convertUnpivot
-
convertCollectionTable
-
afterTableFunction
protected void afterTableFunction(SqlToRelConverter.Blackboard bb, SqlCall call, LogicalTableFunctionScan callRel) -
createJoin
protected RelNode createJoin(SqlToRelConverter.Blackboard bb, RelNode leftRel, RelNode rightRel, RexNode joinCond, JoinRelType joinType) -
createAsofJoin
protected RelNode createAsofJoin(SqlParserPos pos, SqlToRelConverter.Blackboard bb, RelNode leftRel, RelNode rightRel, RexNode joinCond, RexNode matchCondition, JoinRelType joinType) -
getSystemFields
Returns a list of fields to be prefixed to each relational expression.- Returns:
- List of system fields
-
convertAgg
protected void convertAgg(SqlToRelConverter.Blackboard bb, SqlSelect select, List<SqlNode> orderExprList) Converts the SELECT, GROUP BY and HAVING clauses of an aggregate query.This method extracts SELECT, GROUP BY and HAVING clauses, and creates an
AggConverter
, then delegates tocreateAggImpl(org.apache.calcite.sql2rel.SqlToRelConverter.Blackboard, org.apache.calcite.sql2rel.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 differentAggConverter
.- Parameters:
bb
- Scope within which to resolve identifiersselect
- QueryorderExprList
- Additional expressions needed to implement ORDER BY
-
createAggregate
protected RelNode createAggregate(SqlToRelConverter.Blackboard bb, ImmutableBitSet groupSet, com.google.common.collect.ImmutableList<ImmutableBitSet> groupSets, List<AggregateCall> aggCalls) Creates an Aggregate.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.- Parameters:
bb
- BlackboardgroupSet
- Bit set of ordinals of grouping columnsgroupSets
- Grouping setsaggCalls
- Array of calls to aggregate functions- Returns:
- LogicalAggregate
-
convertDynamicParam
-
gatherOrderExprs
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. PopulatesextraOrderExprs
with any sort expressions which are not in the select clause.- Parameters:
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)
-
convertOrderItem
protected RelFieldCollation convertOrderItem(SqlSelect select, SqlNode orderItem, List<SqlNode> extraExprs, RelFieldCollation.Direction direction, RelFieldCollation.NullDirection nullDirection) -
enableDecorrelation
Deprecated. -
decorrelateQuery
-
isTrimUnusedFields
Deprecated.Returns whether to trim unused fields as part of the conversion process.- Returns:
- Whether to trim unused fields
-
convertQueryRecursive
protected RelRoot convertQueryRecursive(SqlNode query, boolean top, @Nullable RelDataType targetRowType) Recursively converts a query to a relational expression.- Parameters:
query
- Querytop
- Whether this query is the top-level query of the statementtargetRowType
- Target row type, or null- Returns:
- Relational expression
-
convertSetOp
Converts a set operation (UNION, INTERSECT, MINUS) into relational expressions.- Parameters:
call
- Call to set operator- Returns:
- Relational expression
-
convertInsert
-
toRel
-
getTargetTable
-
convertColumnList
Creates a source for an INSERT statement.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.
- Parameters:
call
- Insert expressionsource
- Source relational expression- Returns:
- Converted INSERT statement
-
collectInsertTargets
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.- Parameters:
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 populated
-
adjustInputRef
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.- Parameters:
bb
- BlackboardinputRef
- Input ref- Returns:
- Adjusted input ref
-
extraSelectItems
protected void extraSelectItems(SqlToRelConverter.Blackboard bb, SqlSelect select, List<RexNode> exprList, List<String> nameList, Collection<String> aliasList, List<SqlMonotonicity> columnMonotonicityList) Adds extra select items. The default implementation adds nothing; derived classes may add columns to exprList, nameList, aliasList and columnMonotonicityList.- Parameters:
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 column
-
convertWith
Converts a WITH sub-query into a relational expression. -
convertValues
Converts a SELECT statement's parse tree into a relational expression. -
config
Returns a defaultSqlToRelConverter.Config
.
-