OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox Class Reference
+ Inheritance diagram for com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox:
+ Collaboration diagram for com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox:

Public Member Functions

RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Package Functions

 ST_IntersectsBox ()
 

Static Private Member Functions

static java.util.List
< SqlTypeFamily > 
signature ()
 

Detailed Description

Definition at line 1846 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.ST_IntersectsBox ( )
inlinepackage

Definition at line 1847 of file HeavyDBSqlOperatorTable.java.

1847  {
1848  super("ST_IntersectsBox",
1849  SqlKind.OTHER_FUNCTION,
1850  null,
1851  null,
1852  OperandTypes.family(signature()),
1853  SqlFunctionCategory.SYSTEM);
1854  }

Member Function Documentation

RelDataType com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.inferReturnType ( SqlOperatorBinding  opBinding)
inline

Definition at line 1857 of file HeavyDBSqlOperatorTable.java.

1857  {
1858  assert opBinding.getOperandCount() == 2;
1859  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
1860  return typeFactory.createSqlType(SqlTypeName.BOOLEAN);
1861  }
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.signature ( )
inlinestaticprivate

Definition at line 1863 of file HeavyDBSqlOperatorTable.java.

1863  {
1864  java.util.List<SqlTypeFamily> st_intersect_box_sig =
1865  new java.util.ArrayList<SqlTypeFamily>();
1866  st_intersect_box_sig.add(SqlTypeFamily.ANY);
1867  st_intersect_box_sig.add(SqlTypeFamily.ANY);
1868  return st_intersect_box_sig;
1869  }

The documentation for this class was generated from the following file: