Package org.apache.calcite.piglet
Class Ast.ForeachStmt
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.ForeachStmt
- Enclosing class:
Ast
Parse tree node for FOREACH statement (non-nested).
Syntax:
alias = FOREACH alias GENERATE expression [, expression]...
[ AS schema ];
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionForeachStmt
(SqlParserPos pos, Ast.Identifier target, Ast.Identifier source, List<Ast.Node> expList, Ast.Schema schema) -
Method Summary
-
Constructor Details
-
ForeachStmt
public ForeachStmt(SqlParserPos pos, Ast.Identifier target, Ast.Identifier source, List<Ast.Node> expList, Ast.Schema schema)
-