We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16282ae commit d4696faCopy full SHA for d4696fa
contrib/pg_upgrade/function.c
@@ -240,6 +240,12 @@ check_loadable_libraries(void)
240
* For this case, we could check pg_pltemplate, but that only works
241
* for languages, and does not help with function shared objects,
242
* so we just do a general fix.
243
+ *
244
+ * Some systems have plpython_call_handler() that references
245
+ * "plpython" defined in the "public" schema, causing pg_dump to
246
+ * dump it an generate an error on pg_dumpall restore; not sure
247
+ * on the cause, see:
248
+ * http://archives.postgresql.org/pgsql-hackers/2012-03/msg01101.php
249
*/
250
if (GET_MAJOR_VERSION(old_cluster.major_version) < 901 &&
251
strcmp(lib, "$libdir/plpython") == 0)
0 commit comments