OmniSciDB  f17484ade4
 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 1792 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 1793 of file HeavyDBSqlOperatorTable.java.

1793  {
1794  super("ST_IntersectsBox",
1795  SqlKind.OTHER_FUNCTION,
1796  null,
1797  null,
1798  OperandTypes.family(signature()),
1799  SqlFunctionCategory.SYSTEM);
1800  }

Member Function Documentation

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

Definition at line 1803 of file HeavyDBSqlOperatorTable.java.

1803  {
1804  assert opBinding.getOperandCount() == 2;
1805  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
1806  return typeFactory.createSqlType(SqlTypeName.BOOLEAN);
1807  }
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IntersectsBox.signature ( )
inlinestaticprivate

Definition at line 1809 of file HeavyDBSqlOperatorTable.java.

1809  {
1810  java.util.List<SqlTypeFamily> st_intersect_box_sig =
1811  new java.util.ArrayList<SqlTypeFamily>();
1812  st_intersect_box_sig.add(SqlTypeFamily.ANY);
1813  st_intersect_box_sig.add(SqlTypeFamily.ANY);
1814  return st_intersect_box_sig;
1815  }

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