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

Public Member Functions

RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Package Functions

 ST_Approx_Overlaps ()
 

Static Private Member Functions

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

Detailed Description

Definition at line 1872 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 1873 of file HeavyDBSqlOperatorTable.java.

1873  {
1874  super("ST_Approx_Overlaps",
1875  SqlKind.OTHER_FUNCTION,
1876  null,
1877  null,
1878  OperandTypes.family(signature()),
1879  SqlFunctionCategory.SYSTEM);
1880  }

Member Function Documentation

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

Definition at line 1883 of file HeavyDBSqlOperatorTable.java.

1883  {
1884  assert opBinding.getOperandCount() == 2;
1885  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
1886  return typeFactory.createSqlType(SqlTypeName.BOOLEAN);
1887  }
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_Approx_Overlaps.signature ( )
inlinestaticprivate

Definition at line 1889 of file HeavyDBSqlOperatorTable.java.

1889  {
1890  java.util.List<SqlTypeFamily> st_intersect_box_sig =
1891  new java.util.ArrayList<SqlTypeFamily>();
1892  st_intersect_box_sig.add(SqlTypeFamily.ANY);
1893  st_intersect_box_sig.add(SqlTypeFamily.ANY);
1894  return st_intersect_box_sig;
1895  }

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