Support [FIRST | AFTER column_name] support in ALTER TABLE for MySQL (#1180)

This commit is contained in:
xring 2024-04-07 20:43:23 +08:00 committed by GitHub
parent 732e1ec1fc
commit 20c5754784
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 257 additions and 6 deletions

View file

@ -694,6 +694,7 @@ fn parse_alter_table_add_columns() {
collation: None,
options: vec![],
},
column_position: None,
},
AlterTableOperation::AddColumn {
column_keyword: true,
@ -704,6 +705,7 @@ fn parse_alter_table_add_columns() {
collation: None,
options: vec![],
},
column_position: None,
},
]
);