-
Notifications
You must be signed in to change notification settings - Fork 46
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
Format error in an UPDATE statement #98
Comments
are you sure you are calling A standalone reproducer using |
Yes, it's |
it's not. It expands from -- The query string must contain exactly one substitution group,
-- identified by the SQL keyword \"@VALUES@\" (case insensitive)
-- followed by an \"@(@\" character, a series of one or more \"@?@\"
-- characters separated by commas, and a \"@)@\" character. White
-- space in a substitution group is permitted. |
Ah OK I get it. So I should do |
Yeah, |
Hello,
I have this query:
This works perfectly fine when I substitute some values and execute as a raw SQL statement.
However when I try to
Database.PostgreSQL.Simple.execute
this query with some values, I'm getting this error:Apparently the internal parser for SQL for
postgresql-simple
can't handle this query properly.The text was updated successfully, but these errors were encountered: