Add support for dropping multiple columns in Snowflake (#1918)

This commit is contained in:
Yoav Cohen 2025-07-05 08:18:58 +02:00 committed by GitHub
parent b0bcc46e22
commit d2466af20a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 28 additions and 12 deletions

View file

@ -2876,7 +2876,7 @@ fn parse_alter_table_with_algorithm() {
vec![
AlterTableOperation::DropColumn {
has_column_keyword: true,
column_name: Ident::new("password_digest"),
column_names: vec![Ident::new("password_digest")],
if_exists: false,
drop_behavior: None,
},
@ -2924,7 +2924,7 @@ fn parse_alter_table_with_lock() {
vec![
AlterTableOperation::DropColumn {
has_column_keyword: true,
column_name: Ident::new("password_digest"),
column_names: vec![Ident::new("password_digest")],
if_exists: false,
drop_behavior: None,
},