Class FamilyOperandTypeChecker
- All Implemented Interfaces:
ImplicitCastOperandTypeChecker
,SqlOperandTypeChecker
,SqlSingleOperandTypeChecker
- Direct Known Subclasses:
OperandMetadataImpl
Subclasses that check a single operand should override
checkSingleOperandType(SqlCallBinding, SqlNode, int, SqlTypeFamily, boolean)
.
Subclasses that check multiple operands should override either
checkSingleOperandType(SqlCallBinding, SqlNode, int, SqlTypeFamily, boolean)
,
or *both* checkOperandTypes(SqlCallBinding, boolean)
and
checkOperandTypesWithoutTypeCoercion(SqlCallBinding, boolean)
.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.calcite.sql.type.SqlOperandTypeChecker
SqlOperandTypeChecker.Consistency
-
Field Summary
Modifier and TypeFieldDescriptionprotected final com.google.common.collect.ImmutableList<SqlTypeFamily>
-
Method Summary
Modifier and TypeMethodDescriptionboolean
checkOperandTypes
(SqlCallBinding callBinding, boolean throwOnFailure) Checks the types of all operands to an operator call.boolean
checkOperandTypesWithoutTypeCoercion
(SqlCallBinding callBinding, boolean throwOnFailure) Checks the types of an operator's all operands, but without type coercion.boolean
checkSingleOperandType
(SqlCallBinding callBinding, SqlNode node, int iFormalOperand, boolean throwOnFailure) Checks the type of a single operand against a particular ordinal position within a formal operator signature.protected boolean
checkSingleOperandType
(SqlCallBinding callBinding, SqlNode operand, int iFormalOperand, SqlTypeFamily family, boolean throwOnFailure) getAllowedSignatures
(SqlOperator op, String opName) Returns a string describing the allowed formal signatures of a call, e.g.Returns the range of operand counts allowed in a call.getOperandSqlTypeFamily
(int iFormalOperand) Get the operand SqlTypeFamily of formal indexiFormalOperand
.boolean
isOptional
(int i) Returns whether thei
th operand is optional.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.type.SqlOperandTypeChecker
and, getConsistency, isFixedParameters, or, typeInference, withGenerator
Methods inherited from interface org.apache.calcite.sql.type.SqlSingleOperandTypeChecker
and, or
-
Field Details
-
families
-
optional
-
-
Method Details
-
isOptional
public boolean isOptional(int i) Description copied from interface:SqlOperandTypeChecker
Returns whether thei
th operand is optional.- Specified by:
isOptional
in interfaceSqlOperandTypeChecker
-
checkSingleOperandType
public boolean checkSingleOperandType(SqlCallBinding callBinding, SqlNode node, int iFormalOperand, boolean throwOnFailure) Description copied from interface:SqlSingleOperandTypeChecker
Checks the type of a single operand against a particular ordinal position within a formal operator signature. Note that the actual ordinal position of the operand being checked may be different from the position of the formal operand.For example, when validating the actual call
C(X, Y, Z)
the strategy for validating the operand Z might involve checking its type against the formal signature OP(W). In this case,
iFormalOperand
would be zero, even though the position of Z within call C is two.Caution that we could not(shouldn't) implement implicit type coercion for this checker, implicit type coercion has side effect(modify the AST), if this single operand checker is subsumed in a composite rule(OR or AND), we can not make any side effect if we can not make sure that all the single operands type check are passed(with type coercion). But there is an exception: only if the call has just one operand, for this case, use
SqlOperandTypeChecker.checkOperandTypes(org.apache.calcite.sql.SqlCallBinding, boolean)
instead.- Specified by:
checkSingleOperandType
in interfaceSqlSingleOperandTypeChecker
- Parameters:
callBinding
- description of the call being checked; this is only provided for context when throwing an exception; the implementation should NOT examine the operands of the call as part of the checknode
- the actual operand to be checkediFormalOperand
- the 0-based formal operand ordinalthrowOnFailure
- whether to throw an exception if check fails (otherwise returns false in that case)- Returns:
- whether check succeeded
-
checkSingleOperandType
protected boolean checkSingleOperandType(SqlCallBinding callBinding, SqlNode operand, int iFormalOperand, SqlTypeFamily family, boolean throwOnFailure) -
checkOperandTypes
Description copied from interface:SqlOperandTypeChecker
Checks the types of all operands to an operator call.- Specified by:
checkOperandTypes
in interfaceSqlOperandTypeChecker
- Specified by:
checkOperandTypes
in interfaceSqlSingleOperandTypeChecker
- Parameters:
callBinding
- description of the call to be checkedthrowOnFailure
- whether to throw an exception if check fails (otherwise returns false in that case)- Returns:
- whether check succeeded
-
checkOperandTypesWithoutTypeCoercion
public boolean checkOperandTypesWithoutTypeCoercion(SqlCallBinding callBinding, boolean throwOnFailure) Description copied from interface:ImplicitCastOperandTypeChecker
Checks the types of an operator's all operands, but without type coercion. This is mainly used as a pre-check when this checker is included as one of the rules inCompositeOperandTypeChecker
and the composite predicate is `OR`.- Specified by:
checkOperandTypesWithoutTypeCoercion
in interfaceImplicitCastOperandTypeChecker
- Parameters:
callBinding
- description of the call to be checkedthrowOnFailure
- whether to throw an exception if check fails (otherwise returns false in that case)- Returns:
- whether check succeeded
-
getOperandSqlTypeFamily
Description copied from interface:ImplicitCastOperandTypeChecker
Get the operand SqlTypeFamily of formal indexiFormalOperand
. This is mainly used to get the operand SqlTypeFamily when this checker is included as one of the rules inCompositeOperandTypeChecker
and the composite predicate is `SEQUENCE`.- Specified by:
getOperandSqlTypeFamily
in interfaceImplicitCastOperandTypeChecker
- Parameters:
iFormalOperand
- the formal operand index.- Returns:
- SqlTypeFamily of the operand.
-
getOperandCountRange
Description copied from interface:SqlOperandTypeChecker
Returns the range of operand counts allowed in a call.- Specified by:
getOperandCountRange
in interfaceSqlOperandTypeChecker
- Specified by:
getOperandCountRange
in interfaceSqlSingleOperandTypeChecker
-
getAllowedSignatures
Description copied from interface:SqlOperandTypeChecker
Returns a string describing the allowed formal signatures of a call, e.g. "SUBSTR(VARCHAR, INTEGER, INTEGER)".- Specified by:
getAllowedSignatures
in interfaceSqlOperandTypeChecker
- Parameters:
op
- the operator being checkedopName
- name to use for the operator in case of aliasing- Returns:
- generated string
-