Package org.apache.calcite.piglet
Class Ast.GroupStmt
java.lang.Object
org.apache.calcite.piglet.Ast.Node
org.apache.calcite.piglet.Ast.Stmt
org.apache.calcite.piglet.Ast.Assignment
org.apache.calcite.piglet.Ast.Assignment1
org.apache.calcite.piglet.Ast.GroupStmt
- Enclosing class:
Ast
Parse tree node for GROUP statement.
Syntax:
alias = GROUP alias
( ALL | BY ( exp | '(' exp [, exp]... ')' ) )
-
Field Summary
-
Constructor Summary
ConstructorDescriptionGroupStmt
(SqlParserPos pos, Ast.Identifier target, Ast.Identifier source, List<Ast.Node> keys) -
Method Summary
-
Constructor Details
-
GroupStmt
public GroupStmt(SqlParserPos pos, Ast.Identifier target, Ast.Identifier source, List<Ast.Node> keys)
-