I have a query like this ``` sql UPDATE my_table SET expire_after = now() + INTERVAL $1 RETURNING * ``` and try to parameterize the query with ``` javascript pg.query(my_query, ['30 seconds']) ``` It doesn't work and throws an error :-( ``` ERROR: syntax error at or near "$1" at character xxx ```