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

Public Member Functions

 SqlNthValueInFrame (String functionName)
 
boolean allowsFraming ()
 
boolean allowsNullTreatment ()
 

Detailed Description

Definition at line 28 of file SqlNthValueInFrame.java.

Constructor & Destructor Documentation

com.mapd.parser.extension.ddl.SqlNthValueInFrame.SqlNthValueInFrame ( String  functionName)
inline

Definition at line 29 of file SqlNthValueInFrame.java.

29  {
30  super(functionName,
31  null,
32  SqlKind.NTH_VALUE,
33  ReturnTypes.ARG0_NULLABLE_IF_EMPTY,
34  null,
35  OperandTypes.family(SqlTypeFamily.ANY, SqlTypeFamily.INTEGER),
36  SqlFunctionCategory.NUMERIC,
37  false,
38  true,
39  Optionality.FORBIDDEN);
40  }

Member Function Documentation

boolean com.mapd.parser.extension.ddl.SqlNthValueInFrame.allowsFraming ( )
inline

Definition at line 43 of file SqlNthValueInFrame.java.

43  {
44  return true;
45  }
boolean com.mapd.parser.extension.ddl.SqlNthValueInFrame.allowsNullTreatment ( )
inline

Definition at line 48 of file SqlNthValueInFrame.java.

48  {
49  return true;
50  }

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