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

Public Member Functions

 PgUnnest ()
 
RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Detailed Description

Definition at line 442 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

com.mapd.calcite.parser.HeavyDBSqlOperatorTable.PgUnnest.PgUnnest ( )
inline

Definition at line 443 of file HeavyDBSqlOperatorTable.java.

443  {
444  super("PG_UNNEST",
445  SqlKind.OTHER_FUNCTION,
446  null,
447  null,
448  OperandTypes.ARRAY,
449  SqlFunctionCategory.SYSTEM);
450  }

Member Function Documentation

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

Definition at line 453 of file HeavyDBSqlOperatorTable.java.

453  {
454  assert opBinding.getOperandCount() == 1;
455  RelDataType elem_type = opBinding.getOperandType(0).getComponentType();
456  assert elem_type != null;
457  return elem_type;
458  }

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