mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
Add support for Create Iceberg Table statement for Snowflake parser (#1664)
This commit is contained in:
parent
183274e274
commit
c7c0de6551
10 changed files with 296 additions and 5 deletions
|
@ -5043,6 +5043,7 @@ fn parse_trigger_related_functions() {
|
|||
if_not_exists: false,
|
||||
transient: false,
|
||||
volatile: false,
|
||||
iceberg: false,
|
||||
name: ObjectName(vec![Ident::new("emp")]),
|
||||
columns: vec![
|
||||
ColumnDef {
|
||||
|
@ -5109,6 +5110,11 @@ fn parse_trigger_related_functions() {
|
|||
with_aggregation_policy: None,
|
||||
with_row_access_policy: None,
|
||||
with_tags: None,
|
||||
base_location: None,
|
||||
external_volume: None,
|
||||
catalog: None,
|
||||
catalog_sync: None,
|
||||
storage_serialization_policy: None,
|
||||
}
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue