Add snowflake dynamic table parsing (#2083)

This commit is contained in:
Andriy Romanov 2025-11-11 00:10:37 -08:00 committed by GitHub
parent eabde4b41e
commit c439ee9419
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 112 additions and 17 deletions

View file

@ -9462,7 +9462,11 @@ impl<'a> Parser<'a> {
operations,
location,
on_cluster,
iceberg,
table_type: if iceberg {
Some(AlterTableType::Iceberg)
} else {
None
},
end_token: AttachedToken(end_token),
}
.into())