OmniSciDB  72c90bc290
 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 424 of file HeavyDBSqlOperatorTable.java.

Constructor & Destructor Documentation

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

Definition at line 425 of file HeavyDBSqlOperatorTable.java.

425  {
426  super("MyUDF",
427  SqlKind.OTHER_FUNCTION,
428  null,
429  null,
430  OperandTypes.STRING_STRING,
431  SqlFunctionCategory.SYSTEM);
432  }

Member Function Documentation

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

Definition at line 435 of file HeavyDBSqlOperatorTable.java.

435  {
436  final RelDataTypeFactory typeFactory = opBinding.getTypeFactory();
437  return typeFactory.createSqlType(SqlTypeName.BIGINT);
438  }

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