Class LambdaNamespace
- All Implemented Interfaces:
SqlValidatorNamespace
lambda expression
.-
Field Summary
Modifier and TypeFieldDescriptionprotected final @Nullable SqlNode
protected ImmutableBitSet
Ordinals of fields that must be filtered.protected @Nullable RelDataType
Type of the output row, which comprises the name and type of each output column.protected @Nullable RelDataType
AsrowType
, but not necessarily a struct.protected final SqlValidatorImpl
-
Method Summary
Modifier and TypeMethodDescriptionprotected RelDataType
convertToStruct
(RelDataType type) @Nullable RelDataTypeField
Returns a field of a given name, or null.@Nullable SqlNode
Returns the parse tree node that at is at the root of this namespace and includes all decorations.Returns a list of expressions which are monotonic in this namespace.getMonotonicity
(String columnName) Returns whether and how a given column is sorted.Returns the ordinals (in the row type) of the "must-filter" fields, fields that that must be filtered in a query.@Nullable SqlNode
getNode()
Returns the parse tree node at the root of this namespace.Returns the row type of this namespace, which comprises a list of names and types of the output columns.Returns the row type of this namespace, sans any system columns.@Nullable SqlValidatorTable
getTable()
Returns the underlying table, or null if there is none.getType()
Returns the type of this namespace.Returns the validator.boolean
isWrapperFor
(Class<?> clazz) Returns whether this namespace implements a given interface, or wraps a class which does.@Nullable SqlValidatorNamespace
lookupChild
(String name) Looks up a child namespace of a given name.void
resolve()
If this namespace resolves to another namespace, returns that namespace, following links to the end of the chain.void
setType
(RelDataType type) Sets the type of this namespace.boolean
supportsModality
(SqlModality modality) Returns whether this namespace is capable of giving results of the desired modality.protected RelDataType
toStruct
(RelDataType type, @Nullable SqlNode unnest) Converts a type to a struct if it is not already.<T> @Nullable T
Returns this namespace, or a wrapped namespace, cast to a particular class.final void
validate
(RelDataType targetRowType) Validates this namespace.protected RelDataType
validateImpl
(RelDataType targetRowType) Validates this scope and returns the type of the records it returns.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.calcite.sql.validate.SqlValidatorNamespace
fieldExists
-
Field Details
-
validator
-
rowType
Type of the output row, which comprises the name and type of each output column. Set on validate. -
type
AsrowType
, but not necessarily a struct. -
mustFilterFields
Ordinals of fields that must be filtered. Initially the empty set, but should typically be re-assigned on validate. -
enclosingNode
-
-
Method Details
-
validateImpl
Validates this scope and returns the type of the records it returns. External users should callSqlValidatorNamespace.validate(org.apache.calcite.rel.type.RelDataType)
, which uses thestatus
field to protect against cycles.- Parameters:
targetRowType
- Desired row type, must not be null, may be the data type 'unknown'.- Returns:
- record data type, never null
-
getNode
Description copied from interface:SqlValidatorNamespace
Returns the parse tree node at the root of this namespace.- Returns:
- parse tree node; null for
TableNamespace
-
getValidator
Description copied from interface:SqlValidatorNamespace
Returns the validator.- Specified by:
getValidator
in interfaceSqlValidatorNamespace
- Returns:
- validator
-
validate
Description copied from interface:SqlValidatorNamespace
Validates this namespace.If the scope has already been validated, does nothing.
Please call
SqlValidatorImpl.validateNamespace(org.apache.calcite.sql.validate.SqlValidatorNamespace, org.apache.calcite.rel.type.RelDataType)
rather than calling this method directly.- Specified by:
validate
in interfaceSqlValidatorNamespace
- Parameters:
targetRowType
- Desired row type, must not be null, may be the data type 'unknown'.
-
getRowType
Description copied from interface:SqlValidatorNamespace
Returns the row type of this namespace, which comprises a list of names and types of the output columns. If the scope's type has not yet been derived, derives it.- Specified by:
getRowType
in interfaceSqlValidatorNamespace
- Returns:
- Row type of this namespace, never null, always a struct
-
getRowTypeSansSystemColumns
Description copied from interface:SqlValidatorNamespace
Returns the row type of this namespace, sans any system columns.- Specified by:
getRowTypeSansSystemColumns
in interfaceSqlValidatorNamespace
- Returns:
- Row type sans system columns
-
getType
Description copied from interface:SqlValidatorNamespace
Returns the type of this namespace.- Specified by:
getType
in interfaceSqlValidatorNamespace
- Returns:
- Row type converted to struct
-
setType
Description copied from interface:SqlValidatorNamespace
Sets the type of this namespace.Allows the type for the namespace to be explicitly set, but usually is called during
SqlValidatorNamespace.validate(RelDataType)
.Implicitly also sets the row type. If the type is not a struct, then the row type is the type wrapped as a struct with a single column, otherwise the type and row type are the same.
- Specified by:
setType
in interfaceSqlValidatorNamespace
-
getEnclosingNode
Description copied from interface:SqlValidatorNamespace
Returns the parse tree node that at is at the root of this namespace and includes all decorations. If there are no decorations, returns the same asSqlValidatorNamespace.getNode()
.- Specified by:
getEnclosingNode
in interfaceSqlValidatorNamespace
-
getTable
Description copied from interface:SqlValidatorNamespace
Returns the underlying table, or null if there is none.- Specified by:
getTable
in interfaceSqlValidatorNamespace
-
lookupChild
Description copied from interface:SqlValidatorNamespace
Looks up a child namespace of a given name.For example, in the query
select e.name from emps as e
,e
is anIdentifierNamespace
which has a childname
which is aFieldNamespace
.- Specified by:
lookupChild
in interfaceSqlValidatorNamespace
- Parameters:
name
- Name of namespace- Returns:
- Namespace
-
field
Description copied from interface:SqlValidatorNamespace
Returns a field of a given name, or null.- Specified by:
field
in interfaceSqlValidatorNamespace
- Parameters:
name
- Field name- Returns:
- Field, or null
-
getMonotonicExprs
Description copied from interface:SqlValidatorNamespace
Returns a list of expressions which are monotonic in this namespace. For example, if the namespace represents a relation ordered by a column called "TIMESTAMP", then the list would contain aSqlIdentifier
called "TIMESTAMP".- Specified by:
getMonotonicExprs
in interfaceSqlValidatorNamespace
-
getMustFilterFields
Description copied from interface:SqlValidatorNamespace
Returns the ordinals (in the row type) of the "must-filter" fields, fields that that must be filtered in a query.- Specified by:
getMustFilterFields
in interfaceSqlValidatorNamespace
-
getMonotonicity
Description copied from interface:SqlValidatorNamespace
Returns whether and how a given column is sorted.- Specified by:
getMonotonicity
in interfaceSqlValidatorNamespace
-
makeNullable
public void makeNullable()- Specified by:
makeNullable
in interfaceSqlValidatorNamespace
-
translate
-
resolve
Description copied from interface:SqlValidatorNamespace
If this namespace resolves to another namespace, returns that namespace, following links to the end of the chain.A
WITH
) clause defines table names that resolve to queries (the body of the with-item). AnIdentifierNamespace
typically resolves to aTableNamespace
.You must not call this method before
SqlValidatorNamespace.validate(RelDataType)
has completed.- Specified by:
resolve
in interfaceSqlValidatorNamespace
-
supportsModality
Description copied from interface:SqlValidatorNamespace
Returns whether this namespace is capable of giving results of the desired modality.true
means streaming,false
means relational.- Specified by:
supportsModality
in interfaceSqlValidatorNamespace
- Parameters:
modality
- Modality
-
unwrap
Description copied from interface:SqlValidatorNamespace
Returns this namespace, or a wrapped namespace, cast to a particular class.- Specified by:
unwrap
in interfaceSqlValidatorNamespace
- Parameters:
clazz
- Desired type- Returns:
- This namespace cast to desired type
-
isWrapperFor
Description copied from interface:SqlValidatorNamespace
Returns whether this namespace implements a given interface, or wraps a class which does.- Specified by:
isWrapperFor
in interfaceSqlValidatorNamespace
- Parameters:
clazz
- Interface- Returns:
- Whether namespace implements given interface
-
convertToStruct
-
toStruct
Converts a type to a struct if it is not already.
-