You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for optional COLUMN in ALTER TABLE CHANGE query (#142)
This PR addresses an issue where the ALTER TABLE CHANGE with skipped
COLUMNS keyword was ignored.
We supporter query
```sql
-- Processed correctly
ALTER TABLE _tmp_table CHANGE COLUMN name firstname varchar(50) NOT NULL default 'mark';
-- Was ignored
ALTER TABLE _tmp_table CHANGE name firstname varchar(50) NOT NULL default 'mark';
```
This PR fixes the issue by adding support for optional COLUMN in the
ALTER TABLE CHANGE query
0 commit comments