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")

Comments

AlexisWilke’s picture

Assigned: Unassigned » AlexisWilke
Status: Active » Patch (to be ported)
StatusFileSize
new5.45 KB

There is a patch for that problem. Please, apply it! Pretty please... 8-)

Thank you.
Alexis Wilke

alcroito’s picture

Status: Patch (to be ported) » Fixed

Fixed in http://drupal.org/node/474442
Thanks for the patch.

Status: Fixed » Closed (fixed)
Issue tags: -PostgreSQL

Automatically closed -- issue fixed for 2 weeks with no activity.