OmniSciDB  c1a53651b2
 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 27 of file SqlNthValueInFrame.java.

Constructor & Destructor Documentation

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

Definition at line 28 of file SqlNthValueInFrame.java.

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

Member Function Documentation

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

Definition at line 42 of file SqlNthValueInFrame.java.

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

Definition at line 47 of file SqlNthValueInFrame.java.

47  {
48  return true;
49  }

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