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

Public Member Functions

RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Package Functions

 ST_IsEmpty ()
 

Static Private Member Functions

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

Detailed Description

Definition at line 1853 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 1854 of file HeavyDBSqlOperatorTable.java.

1854  {
1855  super("ST_IsEmpty",
1856  SqlKind.OTHER_FUNCTION,
1857  null,
1858  null,
1859  OperandTypes.family(signature()),
1860  SqlFunctionCategory.SYSTEM);
1861  }

Member Function Documentation

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

Definition at line 1864 of file HeavyDBSqlOperatorTable.java.

1864  {
1865  assert opBinding.getOperandCount() == 1;
1866  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
1867  return typeFactory.createSqlType(SqlTypeName.BOOLEAN);
1868  }
static java.util.List<SqlTypeFamily> com.mapd.calcite.parser.HeavyDBSqlOperatorTable.ST_IsEmpty.signature ( )
inlinestaticprivate

Definition at line 1870 of file HeavyDBSqlOperatorTable.java.

1870  {
1871  java.util.List<SqlTypeFamily> st_isempty_sig =
1872  new java.util.ArrayList<SqlTypeFamily>();
1873  st_isempty_sig.add(SqlTypeFamily.ANY);
1874  return st_isempty_sig;
1875  }

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