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
Describe the bug wrong sql generated if column name authorization PostgreSQL pq: syntax error at or near "authorization"
Code snippet
INSERT INTO table (authorization) VALUES (NULL);
Expected behavior
INSERT INTO table ("authorization") VALUES (NULL);
The text was updated successfully, but these errors were encountered:
hi, i think this can be avoided by not using postgres keywords as table names.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
wrong sql generated if column name authorization
PostgreSQL
pq: syntax error at or near "authorization"
Code snippet
Expected behavior
The text was updated successfully, but these errors were encountered: