* warning: pg_query() [function.pg-query]: Query failed: ERROR: operator does not exist: character varying = integer LINE 1: SELECT * FROM actions WHERE ( aid = 1) ^ HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.
Please see the suggested patch:
http://gitprivate.catalyst.net.nz/gw?p=drupal.git;a=commit;h=b07b21f7476...
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | actions-postgres83.patch | 3.46 KB | ned0r |
Comments
Comment #1
ned0r commentedPostgres 8.3 has become more strict about type checking.
The current actions module is using %d place holders to do updates to a VARCHAR field in the database, and postgres is throwing warnings about it.
The patch simply alters the updates to use '%s' placeholders instead :-)
Comment #2
ned0r commentedAttached patch
Comment #3
dpearcefl commentedIs this still an issue using current Drupal 6? Is the patch still needed?