|
static java.util.List< SqlTypeFamily > | signature () |
|
Definition at line 1174 of file MapDSqlOperatorTable.java.
◆ ST_Disjoint()
com.mapd.calcite.parser.MapDSqlOperatorTable.ST_Disjoint.ST_Disjoint |
( |
| ) |
|
|
inlinepackage |
Definition at line 1175 of file MapDSqlOperatorTable.java.
1176 super(
"ST_Disjoint",
1177 SqlKind.OTHER_FUNCTION,
1181 SqlFunctionCategory.SYSTEM);
static java.util.List< SqlTypeFamily > signature()
◆ inferReturnType()
RelDataType com.mapd.calcite.parser.MapDSqlOperatorTable.ST_Disjoint.inferReturnType |
( |
SqlOperatorBinding |
opBinding | ) |
|
|
inline |
Definition at line 1185 of file MapDSqlOperatorTable.java.
1186 assert opBinding.getOperandCount() == 2;
1187 final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
1188 return typeFactory.createTypeWithNullability(
1189 typeFactory.createSqlType(SqlTypeName.BOOLEAN),
1190 opBinding.getOperandType(0).isNullable()
1191 || opBinding.getOperandType(1).isNullable());
◆ signature()
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.MapDSqlOperatorTable.ST_Disjoint.signature |
( |
| ) |
|
|
inlinestaticprivate |
Definition at line 1194 of file MapDSqlOperatorTable.java.
1195 java.util.List<SqlTypeFamily> st_disjoint_sig =
1196 new java.util.ArrayList<SqlTypeFamily>();
1197 st_disjoint_sig.add(SqlTypeFamily.ANY);
1198 st_disjoint_sig.add(SqlTypeFamily.ANY);
1199 return st_disjoint_sig;
The documentation for this class was generated from the following file: