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

Public Member Functions

RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Package Functions

 ST_StartPoint ()
 

Detailed Description

Definition at line 2240 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 2241 of file HeavyDBSqlOperatorTable.java.

2241  {
2242  super("ST_StartPoint",
2243  SqlKind.OTHER_FUNCTION,
2244  null,
2245  null,
2246  OperandTypes.family(SqlTypeFamily.ANY),
2247  SqlFunctionCategory.SYSTEM);
2248  }

Member Function Documentation

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

Definition at line 2251 of file HeavyDBSqlOperatorTable.java.

2251  {
2252  assert opBinding.getOperandCount() == 1;
2253  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
2254  return typeFactory.createTypeWithNullability(
2255  typeFactory.createSqlType(SqlTypeName.INTEGER),
2256  opBinding.getOperandType(0).isNullable());
2257  }

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