You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR: column "$1" does not exist at character 39
STATEMENT: INSERT INTO"_pingdom" ("ip") VALUES ("$1")
The problem is that $1 is escaped, but on postgres-9.5.1-1 thaẗ́'s invalid.
I looked through the source to fix the bug, but I can't seem to find something that links the io.getquill.sources.sql.idiom.SqlIdom trait to the io.getquill.naming.NamingStrategy trait.
The text was updated successfully, but these errors were encountered:
Without Escape:
With Escape:
The problem is that
$1
is escaped, but on postgres-9.5.1-1 thaẗ́'s invalid.I looked through the source to fix the bug, but I can't seem to find something that links the
io.getquill.sources.sql.idiom.SqlIdom
trait to theio.getquill.naming.NamingStrategy
trait.The text was updated successfully, but these errors were encountered: