|
| LeftRightTrim (final String name, final SqlKind kind) |
|
SqlCall | createCall (@Nullable SqlLiteral functionQualifier, SqlParserPos pos,@Nullable SqlNode...operands) |
|
boolean | requiresCreate (List< SqlNode > operands) |
|
com.mapd.calcite.parser.HeavyDBSqlOperatorTable.LeftRightTrim.LeftRightTrim |
( |
final String |
name, |
|
|
final SqlKind |
kind |
|
) |
| |
|
inline |
Definition at line 848 of file HeavyDBSqlOperatorTable.java.
851 ReturnTypes.ARG0.andThen(SqlTypeTransforms.TO_NULLABLE)
852 .andThen(SqlTypeTransforms.TO_VARYING),
855 OperandTypes.family(SqlTypeFamily.STRING, SqlTypeFamily.STRING),
856 new SameOperandTypeChecker(2) {
858 protected List<Integer> getOperandList(
int operandCount) {
859 return ImmutableList.of(0, 1);
862 SqlFunctionCategory.STRING);
SqlCall com.mapd.calcite.parser.HeavyDBSqlOperatorTable.LeftRightTrim.createCall |
( |
@Nullable SqlLiteral |
functionQualifier, |
|
|
SqlParserPos |
pos, |
|
|
@Nullable SqlNode... |
operands |
|
) |
| |
|
inline |
Definition at line 866 of file HeavyDBSqlOperatorTable.java.
869 assert functionQualifier == null;
870 switch (operands.length) {
872 operands =
new SqlNode[] {operands[0], SqlLiteral.createCharString(
" ", pos)};
875 if (operands[1] == null) {
876 operands[1] = SqlLiteral.createCharString(
" ", pos);
878 operands =
new SqlNode[] {operands[0], operands[1]};
881 throw new IllegalArgumentException(
882 "Invalid operand count " + Arrays.toString(operands));
884 return super.createCall(functionQualifier, pos, operands);
boolean com.mapd.calcite.parser.HeavyDBSqlOperatorTable.LeftRightTrim.requiresCreate |
( |
List< SqlNode > |
operands | ) |
|
|
inline |
The documentation for this class was generated from the following file: