OmniSciDB  a5dc49c757
 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 2435 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 2436 of file HeavyDBSqlOperatorTable.java.

2436  {
2437  super("ST_StartPoint",
2438  SqlKind.OTHER_FUNCTION,
2439  null,
2440  null,
2441  OperandTypes.family(SqlTypeFamily.ANY),
2442  SqlFunctionCategory.SYSTEM);
2443  }

Member Function Documentation

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

Definition at line 2446 of file HeavyDBSqlOperatorTable.java.

2446  {
2447  assert opBinding.getOperandCount() == 1;
2448  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
2449  return typeFactory.createTypeWithNullability(
2450  typeFactory.createSqlType(SqlTypeName.INTEGER),
2451  opBinding.getOperandType(0).isNullable());
2452  }

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