Add support for Create Iceberg Table statement for Snowflake parser (#1664)

This commit is contained in:
Denys Tsomenko 2025-01-20 22:39:44 +02:00 committed by GitHub
parent 183274e274
commit c7c0de6551
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 296 additions and 5 deletions

View file

@ -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,
}
);