Skip to content
New issue

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

Does not output quoted identifiers for table or column names colliding with SQL keywords #25

Open
photoshovel opened this issue Feb 13, 2018 · 1 comment

Comments

@photoshovel
Copy link

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;

@joncrlsn
Copy link
Owner

joncrlsn commented Feb 16, 2018

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants