Enum datafusion::sql::parser::Statement [−][src]
pub enum Statement {
Statement(SQLStatement),
CreateExternalTable(CreateExternalTable),
}
Expand description
DataFusion Statement representations.
Tokens parsed by DFParser
are converted into these values.
Variants
Statement(SQLStatement)
ANSI SQL AST node
Tuple Fields of Statement
0: SQLStatement
CreateExternalTable(CreateExternalTable)
Extension: CREATE EXTERNAL TABLE
Tuple Fields of CreateExternalTable
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Statement
impl UnwindSafe for Statement
Blanket Implementations
Mutably borrows from an owned value. Read more