|
static java.util.List
< SqlTypeFamily > | signature () |
|
com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Within.ST_Within |
( |
| ) |
|
|
inlinepackage |
Definition at line 2069 of file HeavyDBSqlOperatorTable.java.
2071 SqlKind.OTHER_FUNCTION,
2075 SqlFunctionCategory.SYSTEM);
static java.util.List< SqlTypeFamily > signature()
RelDataType com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Within.inferReturnType |
( |
SqlOperatorBinding |
opBinding | ) |
|
|
inline |
Definition at line 2079 of file HeavyDBSqlOperatorTable.java.
2080 assert opBinding.getOperandCount() == 2;
2081 final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
2082 return typeFactory.createTypeWithNullability(
2083 typeFactory.createSqlType(SqlTypeName.BOOLEAN),
2084 opBinding.getOperandType(0).isNullable()
2085 || opBinding.getOperandType(1).isNullable());
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Within.signature |
( |
| ) |
|
|
inlinestaticprivate |
Definition at line 2088 of file HeavyDBSqlOperatorTable.java.
2089 java.util.List<SqlTypeFamily> st_within_sig =
2090 new java.util.ArrayList<SqlTypeFamily>();
2091 st_within_sig.add(SqlTypeFamily.ANY);
2092 st_within_sig.add(SqlTypeFamily.ANY);
2093 return st_within_sig;
The documentation for this class was generated from the following file: