mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-10 02:14:58 +00:00
Support [FIRST | AFTER column_name]
support in ALTER TABLE
for MySQL (#1180)
This commit is contained in:
parent
732e1ec1fc
commit
20c5754784
7 changed files with 257 additions and 6 deletions
|
@ -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,
|
||||
},
|
||||
]
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue