Queries with (?) are not valid since updated version from 1.1.6 to 1.1.7/1.1.8, doesn't depend on go version
SELECT id FROM my_table WHERE id IN (?);
Getting ERROR: syntax error at or near ")"
Another example:
SELECT * FROM my_table WHERE id = ? AND user_id IN (?);
Getting ERROR: syntax error at or near "AND"
Queries with
(?)are not valid since updated version from1.1.6to1.1.7/1.1.8, doesn't depend on go versionGetting
ERROR: syntax error at or near ")"Another example:
Getting
ERROR: syntax error at or near "AND"