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

Special column name in insert stmt #164

Merged
merged 3 commits into from
Dec 27, 2020

Conversation

emin100
Copy link
Contributor

@emin100 emin100 commented Feb 27, 2020

SQL: INSERT INTO "x" ("user") VALUES ('abc')

Expected: INSERT INTO "x" ("user") VALUES ('abc')

Got: INSERT INTO "x" (user) VALUES ('abc')

SQL: INSERT INTO "x" ("user") VALUES ('abc')

Expected: INSERT INTO "x" ("user") VALUES ('abc')

Got: INSERT INTO "x" (user) VALUES ('abc')
Expected: UPDATE "x" SET "user" = 'MEK'

Got: UPDATE "x" SET user = 'MEK'
@lfittl lfittl merged commit c8f74aa into pganalyze:master Dec 27, 2020
@emin100 emin100 deleted the insert_special_column_name branch December 28, 2020 06:09
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

Successfully merging this pull request may close these issues.

None yet

2 participants