mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-04 06:18:17 +00:00
Add support for dropping multiple columns in Snowflake (#1918)
This commit is contained in:
parent
b0bcc46e22
commit
d2466af20a
7 changed files with 28 additions and 12 deletions
|
@ -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,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue