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

Public Member Functions

 MyUDFFunction ()
 
RelDataType inferReturnType (SqlOperatorBinding opBinding)
 

Detailed Description

"MyUDFFunction" user-defined function test. our udf's will look like system functions to calcite as it has no access to the code

Definition at line 410 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 411 of file HeavyDBSqlOperatorTable.java.

411  {
412  super("MyUDF",
413  SqlKind.OTHER_FUNCTION,
414  null,
415  null,
416  OperandTypes.STRING_STRING,
417  SqlFunctionCategory.SYSTEM);
418  }

Member Function Documentation

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

Definition at line 421 of file HeavyDBSqlOperatorTable.java.

421  {
422  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
423  return typeFactory.createSqlType(SqlTypeName.BIGINT);
424  }

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