ygrek/sqlgg

`ALTER TABLE <table> CHANGE [COLUMN] <column>` on missing columns

Closed this issue · 0 comments

sqlgg accepts this:

CREATE TABLE test ( foo INTEGER );
-- the following succeeds, although there is no column named "bar"
ALTER TABLE test CHANGE bar baz INTEGER;