| 类 | 说明 |
|---|---|
| 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
|
| 枚举 | 说明 |
|---|---|
| RichSqlInsertKeyword |
Defines the keywords that can occur immediately after the "INSERT" keyword.
|
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.