Package org.apache.calcite.sql2rel
Class NullInitializerExpressionFactory
java.lang.Object
org.apache.calcite.sql2rel.NullInitializerExpressionFactory
- All Implemented Interfaces:
InitializerExpressionFactory
- Direct Known Subclasses:
CountingFactory,VirtualColumnsExpressionFactory
public class NullInitializerExpressionFactory
extends Object
implements InitializerExpressionFactory
An implementation of
InitializerExpressionFactory that always supplies NULL.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongenerationStrategy(RelOptTable table, int iColumn) Returns how a column is populated.booleanisGeneratedAlways(RelOptTable table, int iColumn) Whether a column is always generated.newAttributeInitializer(RelDataType type, SqlFunction constructor, int iAttribute, List<RexNode> constructorArgs, InitializerContext context) Creates an expression which evaluates to the initializer expression for a particular attribute of a structured type.newColumnDefaultValue(RelOptTable table, int iColumn, InitializerContext context) Creates an expression which evaluates to the default value for a particular column.@Nullable BiFunction<InitializerContext,RelNode, RelNode> Creates a hook function to customize the relational expression right after the column expressions are converted.
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
NullInitializerExpressionFactory
public NullInitializerExpressionFactory()
-
-
Method Details
-
isGeneratedAlways
Description copied from interface:InitializerExpressionFactoryWhether a column is always generated. If a column is always generated, then non-generated values cannot be inserted into the column.- Specified by:
isGeneratedAlwaysin interfaceInitializerExpressionFactory- See Also:
-
generationStrategy
Description copied from interface:InitializerExpressionFactoryReturns how a column is populated.- Specified by:
generationStrategyin interfaceInitializerExpressionFactory- Parameters:
table- the table containing the columniColumn- the 0-based offset of the column in the table- Returns:
- generation strategy, never null
- See Also:
-
newColumnDefaultValue
Description copied from interface:InitializerExpressionFactoryCreates an expression which evaluates to the default value for a particular column.If the default value comes from a un-validated
SqlNode, make sure to invokeInitializerContext.validateExpression(org.apache.calcite.rel.type.RelDataType, org.apache.calcite.sql.SqlNode)first before you actually do the conversion with methodInitializerContext.convertExpression(org.apache.calcite.sql.SqlNode).- Specified by:
newColumnDefaultValuein interfaceInitializerExpressionFactory- Parameters:
table- the table containing the columniColumn- the 0-based offset of the column in the tablecontext- Context for creating the expression- Returns:
- default value expression
-
postExpressionConversionHook
Description copied from interface:InitializerExpressionFactoryCreates a hook function to customize the relational expression right after the column expressions are converted. Usually the relational expression is a projection above a table scan.- Specified by:
postExpressionConversionHookin interfaceInitializerExpressionFactory- Returns:
- a hook function to transform the relational expression right after the column expression conversion to a customized one
- See Also:
-
newAttributeInitializer
public RexNode newAttributeInitializer(RelDataType type, SqlFunction constructor, int iAttribute, List<RexNode> constructorArgs, InitializerContext context) Description copied from interface:InitializerExpressionFactoryCreates an expression which evaluates to the initializer expression for a particular attribute of a structured type.- Specified by:
newAttributeInitializerin interfaceInitializerExpressionFactory- Parameters:
type- the structured typeconstructor- the constructor invoked to initialize the typeiAttribute- the 0-based offset of the attribute in the typeconstructorArgs- arguments passed to the constructor invocationcontext- Context for creating the expression- Returns:
- default value expression
-