Class | Description |
---|---|
RichSqlInsert |
A
SqlInsert that have some extension functions like partition, overwrite |
SqlBeginStatementSet |
BEGIN STATEMENT SET.
|
SqlCompileAndExecutePlan |
AST node for
COMPILE AND EXECUTE PLAN 'planfile' FOR [DML] . |
SqlEndStatementSet |
END.
|
SqlExecute |
SqlExecute contains a statement to execute. the statement can be
SqlSelect , SqlStatementSet , or RichSqlInsert , such as:
execute select * from Table
execute insert into A select * from B
execute statement set begin insert into A select * from B; insert into C select * from D; end
|
SqlExecutePlan |
AST node for
EXECUTE PLAN 'planfile' . |
SqlStatementSet |
Statement Set contains a group of inserts. eg:
execute statement set begin insert into A select * from B; insert into C select * from D; end
|
SqlTruncateTable |
SqlNode to describe TRUNCATE TABLE statement.
|
Enum | Description |
---|---|
RichSqlInsertKeyword |
Defines the keywords that can occur immediately after the "INSERT" keyword.
|
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.