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
If you define a column as eg Wire "don'tdothis" opaleye will generate invalid queries.
Wire "don'tdothis"
The text was updated successfully, but these errors were encountered:
Interesting. Is this actually a valid column name?
Sorry, something went wrong.
Yep
# create table x ("id'" int); CREATE TABLE # insert into x ("id'") values (1); INSERT 0 1 # select * from x; id' ----- 1 (1 row)
I don't really care about this by the way, but thought it was worth mentioning.
It's definitely worth having a record of it, so thanks for pointing it out.
I think this is now fixed in Opaleye 1: tomjaguarpaw/haskell-opaleye@3d9946f
No branches or pull requests
If you define a column as eg
Wire "don'tdothis"
opaleye will generate invalid queries.The text was updated successfully, but these errors were encountered: