public class SameOperandTypeChecker extends Object implements SqlSingleOperandTypeChecker
SqlOperandTypeChecker.Consistency| Modifier and Type | Field and Description |
|---|---|
protected int |
nOperands |
| Constructor and Description |
|---|
SameOperandTypeChecker(int nOperands) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
checkOperandTypes(SqlCallBinding callBinding,
boolean throwOnFailure)
Checks the types of all operands to an operator call.
|
boolean |
checkOperandTypes(SqlOperatorBinding operatorBinding)
Similar functionality to
checkOperandTypes(SqlCallBinding, boolean), but not part of the
interface, and cannot throw an error. |
protected boolean |
checkOperandTypesImpl(SqlOperatorBinding operatorBinding,
boolean throwOnFailure,
SqlCallBinding callBinding) |
boolean |
checkSingleOperandType(SqlCallBinding callBinding,
SqlNode operand,
int iFormalOperand,
boolean throwOnFailure)
Checks the type of a single operand against a particular ordinal position
within a formal operator signature.
|
String |
getAllowedSignatures(SqlOperator op,
String opName)
Returns a string describing the allowed formal signatures of a call, e.g.
|
SqlOperandTypeChecker.Consistency |
getConsistency()
Returns the strategy for making the arguments have consistency types.
|
SqlOperandCountRange |
getOperandCountRange() |
protected List<Integer> |
getOperandList(int operandCount) |
protected String |
getTypeName()
Override to change the behavior of
getAllowedSignatures(SqlOperator, String). |
boolean |
isOptional(int i)
Returns whether the
ith operand is optional. |
public SqlOperandTypeChecker.Consistency getConsistency()
SqlOperandTypeCheckergetConsistency in interface SqlOperandTypeCheckerpublic boolean isOptional(int i)
SqlOperandTypeCheckerith operand is optional.isOptional in interface SqlOperandTypeCheckerpublic boolean checkOperandTypes(SqlCallBinding callBinding, boolean throwOnFailure)
SqlOperandTypeCheckercheckOperandTypes in interface SqlOperandTypeCheckercallBinding - description of the call to be checkedthrowOnFailure - whether to throw an exception if check fails
(otherwise returns false in that case)protected boolean checkOperandTypesImpl(SqlOperatorBinding operatorBinding, boolean throwOnFailure, SqlCallBinding callBinding)
public boolean checkOperandTypes(SqlOperatorBinding operatorBinding)
checkOperandTypes(SqlCallBinding, boolean), but not part of the
interface, and cannot throw an error.public SqlOperandCountRange getOperandCountRange()
getOperandCountRange in interface SqlOperandTypeCheckerpublic String getAllowedSignatures(SqlOperator op, String opName)
SqlOperandTypeCheckergetAllowedSignatures in interface SqlOperandTypeCheckerop - the operator being checkedopName - name to use for the operator in case of aliasingprotected String getTypeName()
getAllowedSignatures(SqlOperator, String).public boolean checkSingleOperandType(SqlCallBinding callBinding, SqlNode operand, int iFormalOperand, boolean throwOnFailure)
SqlSingleOperandTypeCheckerFor 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.
checkSingleOperandType in interface SqlSingleOperandTypeCheckercallBinding - 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 checkoperand - 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)Copyright © 2012–2018 The Apache Software Foundation. All rights reserved.