Package org.apache.calcite.piglet
Class Ast.ForeachNestedStmt
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.ForeachNestedStmt
- Enclosing class:
Ast
Parse tree node for FOREACH statement (nested).
Syntax:
alias = FOREACH nested_alias {
alias = nested_op; [alias = nested_op; ]...
GENERATE expression [, expression]...
};
nested_op ::= DISTINCT, FILTER, LIMIT, ORDER, SAMPLE
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionForeachNestedStmt
(SqlParserPos pos, Ast.Identifier target, Ast.Identifier source, List<Ast.Stmt> nestedStmtList, List<Ast.Node> expList, Ast.Schema schema) -
Method Summary
-
Constructor Details
-
ForeachNestedStmt
public ForeachNestedStmt(SqlParserPos pos, Ast.Identifier target, Ast.Identifier source, List<Ast.Stmt> nestedStmtList, List<Ast.Node> expList, Ast.Schema schema)
-