We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For a table with a column named 'default', get following output:
ALTER TABLE public.example_table ADD COLUMN default boolean NOT NULL DEFAULT false;
Resulting in a syntax error. Syntactically correct output would quote the 'default' column identifier as such:
ALTER TABLE public.example_table ADD COLUMN "default" boolean NOT NULL DEFAULT false;
The text was updated successfully, but these errors were encountered:
This is something I'm still working on. Thank you for the encouragement to finish it. :-)
Quoting will also preserve case for those who care about case.
Sorry, something went wrong.
No branches or pull requests
For a table with a column named 'default', get following output:
ALTER TABLE public.example_table ADD COLUMN default boolean NOT NULL DEFAULT false;
Resulting in a syntax error. Syntactically correct output would quote the 'default' column identifier as such:
ALTER TABLE public.example_table ADD COLUMN "default" boolean NOT NULL DEFAULT false;
The text was updated successfully, but these errors were encountered: