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
An error was raised when encountered ALTER TYPE ..... statement running sql-lint through megalinter
Steps to reproduce
create some .sql file with ALTER TYPE foo RENAME TO bar;
run megaliter with this option SQL_SQL_LINT_ARGUMENTS: -d postgres
Output
[sql-lint: postgres-invalid-alter-option] Option 'type' is not a valid option, must be one of '["column","online","offline","ignore","database","event","function","procedure","server","table","tablespace","view"]'.
In my case, the --ignore-errors=postgres-invalid-alter-option flag was added as a workaround.
An error was raised when encountered
ALTER TYPE .....
statement runningsql-lint
throughmegalinter
Steps to reproduce
.sql
file withALTER TYPE foo RENAME TO bar;
SQL_SQL_LINT_ARGUMENTS: -d postgres
Output
In my case, the
--ignore-errors=postgres-invalid-alter-option
flag was added as a workaround.Expected Bahavior
No error from linter.
ALTER TYPE ...
should be valid. https://www.postgresql.org/docs/current/sql-altertype.htmlThe text was updated successfully, but these errors were encountered: