|
static java.util.List
< SqlTypeFamily > | signature () |
|
com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Disjoint.ST_Disjoint |
( |
| ) |
|
|
inlinepackage |
Definition at line 1657 of file HeavyDBSqlOperatorTable.java.
1658 super(
"ST_Disjoint",
1659 SqlKind.OTHER_FUNCTION,
1663 SqlFunctionCategory.SYSTEM);
static java.util.List< SqlTypeFamily > signature()
RelDataType com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Disjoint.inferReturnType |
( |
SqlOperatorBinding |
opBinding | ) |
|
|
inline |
Definition at line 1667 of file HeavyDBSqlOperatorTable.java.
1668 assert opBinding.getOperandCount() == 2;
1669 final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
1670 return typeFactory.createTypeWithNullability(
1671 typeFactory.createSqlType(SqlTypeName.BOOLEAN),
1672 opBinding.getOperandType(0).isNullable()
1673 || opBinding.getOperandType(1).isNullable());
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Disjoint.signature |
( |
| ) |
|
|
inlinestaticprivate |
Definition at line 1676 of file HeavyDBSqlOperatorTable.java.
1677 java.util.List<SqlTypeFamily> st_disjoint_sig =
1678 new java.util.ArrayList<SqlTypeFamily>();
1679 st_disjoint_sig.add(SqlTypeFamily.ANY);
1680 st_disjoint_sig.add(SqlTypeFamily.ANY);
1681 return st_disjoint_sig;
The documentation for this class was generated from the following file: