Automatically closed - issue fixed for 2 weeks with no activity.
The PostgreSQL functions dbxschema_get_table_ddl and dbxschema_clone_schema are used in some cases to simplify things. But those functions need to be installed on the PostgreSQL database in use. The PostgreSQL cross-schema driver install function assumes Drupal is installed in a PostgreSQL database but that may not be true. Drupal may reside either in a MySQL database or in another PostgreSQL database or server! Therefore, the install may fail as well as the uninstall process. And calling those functions in another PostgreSQL database than the Drupal one will fail as well. Therefore, a different approach should be used.
Not relevant.
Instead of trying to install those function in a PostgreSQL Drupal schema, those function should only be loaded when needed and reside in the temporary space of current connection. The use of "pg_temp" schema would solve many problems:
To implement.
None.
None.
None.
Fixed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.