Class SqlCaseOperator
CASE, NULLIF or 
 COALESCE expression. All of these forms are normalized at parse time
 to a to a simple CASE statement like this:
 CASE WHEN <when expression_0> THEN <then expression_0> WHEN <when expression_1> THEN <then expression_1> ... WHEN <when expression_N> THEN <then expression_N> ELSE <else expression> END
The switched form of the CASE statement is normalized to the
 simple form by inserting calls to the = operator. For
 example,
 
CASE x + y WHEN 1 THEN 'fee' WHEN 2 THEN 'fie' ELSE 'foe' END
becomes
CASE WHEN Equals(x + y, 1) THEN 'fee' WHEN Equals(x + y, 2) THEN 'fie' ELSE 'foe' END
REVIEW jhyde 2004/3/19 Does Equals handle NULL semantics
 correctly?
 
COALESCE(x, y, z) becomes
 
CASE WHEN x IS NOT NULL THEN x WHEN y IS NOT NULL THEN y ELSE z END
NULLIF(x, -1) becomes
 
CASE WHEN x = -1 THEN NULL ELSE x END
Note that some of these normalizations cause expressions to be duplicated. This may make it more difficult to write optimizer rules (because the rules will have to deduce that expressions are equivalent). It also requires that some part of the planning process (probably the generator of the calculator program) does common sub-expression elimination.
REVIEW jhyde 2004/3/19. Expanding expressions at parse time has some other
 drawbacks. It is more difficult to give meaningful validation errors: given
 COALESCE(DATE '2004-03-18', 3.5), do we issue a type-checking
 error against a CASE operator? Second, I'd like to use the
 SqlNode object model to generate SQL to send to 3rd-party databases,
 but there's now no way to represent a call to COALESCE or NULLIF. All in all,
 it would be better to have operators for COALESCE, NULLIF, and both simple
 and switched forms of CASE, then translate to simple CASE when building the
 RexNode tree.
 
The arguments are physically represented as follows:
- The when expressions are stored in a SqlNodeListwhenList.
- The then expressions are stored in a SqlNodeListthenList.
- The else expression is stored as a regular SqlNode.
- 
Field SummaryFieldsFields inherited from class org.apache.calcite.sql.SqlOperatorkind, MDX_PRECEDENCE, NL
- 
Method SummaryModifier and TypeMethodDescriptionbooleancheckOperandTypes(SqlCallBinding callBinding, boolean throwOnFailure) Checks that the operand values in aSqlCallto this operator are valid.createCall(@Nullable SqlLiteral functionQualifier, SqlParserPos pos, @Nullable SqlNode... operands) Creates a call to this operator with an array of operands.deriveType(SqlValidator validator, SqlValidatorScope scope, SqlCall call) Derives the type of a call to this operator.Returns a constraint on the number of operands expected by this operator.Returns the syntactic type of this operator, never null.inferReturnType(SqlOperatorBinding opBinding) Infers the return type of an invocation of this operator; only called after the number and types of operands have already been validated.voidWrites a SQL representation of a call to this operator to a writer, including parentheses if the operators on either side are of greater precedence.voidvalidateCall(SqlCall call, SqlValidator validator, SqlValidatorScope scope, SqlValidatorScope operandScope) Validates a call to this operator.Methods inherited from class org.apache.calcite.sql.SqlOperatoracceptCall, acceptCall, adjustType, allowsFraming, argumentMustBeScalar, checkOperandCount, constructArgNameList, constructArgTypeList, constructOperandList, createCall, createCall, createCall, createCall, createCall, createCall, deriveOperandType, equals, getAllowedSignatures, getAllowedSignatures, getKind, getLeftPrec, getMonotonicity, getMonotonicity, getName, getNameAsId, getOperandTypeChecker, getOperandTypeInference, getReturnTypeInference, getRightPrec, getSignatureTemplate, getSqlCallFactory, getStrongPolicyInference, hashCode, inferReturnType, isAggregator, isDeterministic, isDynamicFunction, isGroup, isGroupAuxiliary, isName, isSymmetrical, leftPrec, not, preValidateCall, requiresDecimalExpansion, requiresOrder, requiresOver, reverse, rewriteCall, rightPrec, toString, unparseListClause, unparseListClause, validateOperands, validRexOperands
- 
Field Details- 
INSTANCE
 
- 
- 
Method Details- 
validateCallpublic void validateCall(SqlCall call, SqlValidator validator, SqlValidatorScope scope, SqlValidatorScope operandScope) Description copied from class:SqlOperatorValidates a call to this operator.This method should not perform type-derivation or perform validation related related to types. That is done later, by SqlOperator.deriveType(SqlValidator, SqlValidatorScope, SqlCall). This method should focus on structural validation.A typical implementation of this method first validates the operands, then performs some operator-specific logic. The default implementation just validates the operands. This method is the default implementation of SqlCall.validate(org.apache.calcite.sql.validate.SqlValidator, org.apache.calcite.sql.validate.SqlValidatorScope); but note that some sub-classes ofSqlCallnever call this method.- Overrides:
- validateCallin class- SqlOperator
- Parameters:
- call- the call to this operator
- validator- the active validator
- scope- validator scope
- operandScope- validator scope in which to validate operands to this call; usually equal to scope, but not always because some operators introduce new scopes
- See Also:
 
- 
deriveTypeDescription copied from class:SqlOperatorDerives the type of a call to this operator.This method is an intrinsic part of the validation process so, unlike SqlOperator.inferReturnType(org.apache.calcite.sql.SqlOperatorBinding), specific operators would not typically override this method.- Overrides:
- deriveTypein class- SqlOperator
- Parameters:
- validator- Validator
- scope- Scope of validation
- call- Call to this operator
- Returns:
- Type of call
 
- 
checkOperandTypesDescription copied from class:SqlOperatorChecks that the operand values in aSqlCallto this operator are valid. Subclasses must either override this method or supply an instance ofSqlOperandTypeCheckerto the constructor.- Overrides:
- checkOperandTypesin class- SqlOperator
- Parameters:
- callBinding- description of call
- throwOnFailure- whether to throw an exception if check fails (otherwise returns false in that case)
- Returns:
- whether check succeeded
 
- 
inferReturnTypeDescription copied from class:SqlOperatorInfers the return type of an invocation of this operator; only called after the number and types of operands have already been validated. Subclasses must either override this method or supply an instance ofSqlReturnTypeInferenceto the constructor.- Overrides:
- inferReturnTypein class- SqlOperator
- Parameters:
- opBinding- description of invocation (not necessarily a- SqlCall)
- Returns:
- inferred return type
 
- 
getOperandCountRangeDescription copied from class:SqlOperatorReturns a constraint on the number of operands expected by this operator. Subclasses may override this method; when they don't, the range is derived from theSqlOperandTypeCheckerassociated with this operator.- Overrides:
- getOperandCountRangein class- SqlOperator
- Returns:
- acceptable range
 
- 
getSyntaxDescription copied from class:SqlOperatorReturns the syntactic type of this operator, never null.- Specified by:
- getSyntaxin class- SqlOperator
 
- 
createCallpublic SqlCall createCall(@Nullable SqlLiteral functionQualifier, SqlParserPos pos, @Nullable SqlNode... operands) Description copied from class:SqlOperatorCreates a call to this operator with an array of operands.The position of the resulting call is the union of the posand the positions of all of the operands.- Overrides:
- createCallin class- SqlOperator
- Parameters:
- functionQualifier- Function qualifier (e.g. "DISTINCT"), or null
- pos- Parser position of the identifier of the call
- operands- Array of operands
 
- 
unparseDescription copied from class:SqlOperatorWrites a SQL representation of a call to this operator to a writer, including parentheses if the operators on either side are of greater precedence.The default implementation of this method delegates to SqlSyntax.unparse(org.apache.calcite.sql.SqlWriter, org.apache.calcite.sql.SqlOperator, org.apache.calcite.sql.SqlCall, int, int).- Overrides:
- unparsein class- SqlOperator
 
 
-