We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe443a commit a7f2c79Copy full SHA for a7f2c79
contrib/pg_upgrade/function.c
@@ -236,6 +236,10 @@ check_loadable_libraries(void)
236
* plpython2u pointing to it. For this reason, any reference to
237
* library name "plpython" in an old PG <= 9.1 cluster must look
238
* for "plpython2" in the new cluster.
239
+ *
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
if (GET_MAJOR_VERSION(old_cluster.major_version) < 901 &&
245
strcmp(lib, "$libdir/plpython") == 0)
0 commit comments