CreateTableOptions in sqlparser::ast - Rust

Enum CreateTableOptions 

Source

pub enum CreateTableOptions {
    None,
    With(Vec<SqlOption>),
    Options(Vec<SqlOption>),
    Plain(Vec<SqlOption>),
    TableProperties(Vec<SqlOption>),
}
Expand description

Sql options of a CREATE TABLE statement. Options allowed within a CREATE TABLE statement.

§

No options specified.

§

Options specified using the WITH keyword, e.g. WITH (k = v).

§

Options specified using the OPTIONS(...) clause.

§

Plain space-separated options.

§

Table properties (e.g., TBLPROPERTIES / storage properties).

§
§
§
§
§
§