Node convert doesn't install on PostgreSQL (v8.2).
Error messages:
warning: pg_query() [function.pg-query]: Query failed: ERROR: column name "ctid" conflicts with a system column name in [...]/drupal6/includes/database.pgsql.inc on line 139.
user warning: query: CREATE TABLE node_convert_templates ( ctid serial CHECK (ctid >= 0), name text, source_type text, destination_type text NOT NULL, data text, PRIMARY KEY (ctid) ) in [...]/drupal/includes/database.inc on line 515.
Additionally there seems to be a missing quote in "node_convert.install" in function "node_convert_uninstall()":
db_query("DELETE FROM {actions} WHERE callback = 'node_convert_convert_action");
should be:
db_query("DELETE FROM {actions} WHERE callback = 'node_convert_convert_action'");
(Missing single quote at "node_convert_convert_action")
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | node_convert-6.x-ctid_field_name.patch | 5.45 KB | AlexisWilke |
Comments
Comment #1
AlexisWilke commentedThere is a patch for that problem. Please, apply it! Pretty please... 8-)
Thank you.
Alexis Wilke
Comment #2
alcroito commentedFixed in http://drupal.org/node/474442
Thanks for the patch.