org.eigenbase.sql.fun
Class SqlMultisetMemberOfOperator
java.lang.Object
org.eigenbase.sql.SqlOperator
org.eigenbase.sql.SqlBinaryOperator
org.eigenbase.sql.fun.SqlMultisetMemberOfOperator
public class SqlMultisetMemberOfOperator
- extends SqlBinaryOperator
Multiset MEMBER OF. Checks to see if a element belongs to a multiset.
Example:
'green' MEMBER OF MULTISET['red','almost green','blue']
returns
false
.
- Version:
- $Id: //open/dev/farrago/src/org/eigenbase/sql/fun/SqlMultisetMemberOfOperator.java#9 $
- Author:
- Wael Chatila
Methods inherited from class org.eigenbase.sql.SqlOperator |
acceptCall, acceptCall, argumentMustBeScalar, checkOperandCount, createCall, createCall, createCall, createCall, equals, getAllowedSignatures, getAllowedSignatures, getKind, getLeftPrec, getName, getOperandTypeChecker, getOperandTypeInference, getReturnTypeInference, getRightPrec, hashCode, inferReturnType, inferReturnType, isAggregator, isDeterministic, isDynamicFunction, isName, leftPrec, preValidateCall, requiresDecimalExpansion, rewriteCall, rightPrec, toString, unparse, unparseListClause, unparseListClause, validateCall, validateOperands |
SqlMultisetMemberOfOperator
public SqlMultisetMemberOfOperator()
checkOperandTypes
public boolean checkOperandTypes(SqlCallBinding callBinding,
boolean throwOnFailure)
- Description copied from class:
SqlOperator
- Checks that the operand values in a
SqlCall
to this operator are
valid. Subclasses must either override this method or supply an instance
of SqlOperandTypeChecker
to the constructor.
- Overrides:
checkOperandTypes
in class SqlOperator
- Parameters:
callBinding
- description of callthrowOnFailure
- whether to throw an exception if check fails
(otherwise returns false in that case)
- Returns:
- whether check succeeded
getOperandCountRange
public SqlOperandCountRange getOperandCountRange()
- Description copied from class:
SqlOperator
- Returns 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 the
SqlOperandTypeChecker
associated with this
operator.
- Overrides:
getOperandCountRange
in class SqlOperator
- Returns:
- acceptable range