-
-
Notifications
You must be signed in to change notification settings - Fork 109
Closed
Description
It seems that the parser seems to treat SET as statement even when it should not:
./bin/lint-query --query 'ALTER TABLE `table_name` ADD `new_column_name` SET ('value1','value2','value3') NOT NULL AFTER `another_column`'
#1: A new statement was found, but no delimiter between it and the previous one. (near "SET" at position 47)
#2: Unrecognized alter operation. (near "," at position 65)
#3: Unrecognized alter operation. (near "" at position 0)
AdityaVSM