Subject: | Positional parameters screwed with |
It seems that DBD::Pg now has some stuff to do something with positional parameters. I'm not sure what it's trying to do, but it breaks in the case that you try to use do() to run a 'prepare' query that has positional parameters in. For example:
db->do(q[
PREPARE search_query (text) as
SELECT blah
FROM blah
WHERE stuff = $1
]);
It doesn't like the $1. This works fine with DBD::PgPP though.
qef