Package org.apache.flink.sql.parser.dml


package org.apache.flink.sql.parser.dml
  • Class
    Description
    A SqlInsert that have some extension functions like partition, overwrite
    Defines the keywords that can occur immediately after the "INSERT" keyword.
    BEGIN STATEMENT SET.
    AST node for COMPILE AND EXECUTE PLAN 'planfile' FOR [DML].
    END.
    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
    AST node for EXECUTE PLAN 'planfile'.
    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
    SqlNode to describe TRUNCATE TABLE statement.