We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentbd17102 commitd2b920cCopy full SHA for d2b920c
contrib/pg_upgrade/function.c
@@ -193,20 +193,20 @@ get_loadable_libraries(void)
193
"in the \"pg_catalog\" schema. You can confirm this by executing\n"
194
"in psql:\n"
195
"\n"
196
-"\\df *.plpython_call_handler\n"
+"\\df *.plpython_call_handler\n"
197
198
"The \"public\" schema version of this function was created by a\n"
199
"pre-8.1 install of plpython, and must be removed for pg_upgrade\n"
200
"to complete because it references a now-obsolete \"plpython\"\n"
201
"shared object file. You can remove the \"public\" schema version\n"
202
"of this function by running the following command:\n"
203
204
-"DROP FUNCTION public.plpython_call_handler()\n"
+"DROP FUNCTION public.plpython_call_handler()\n"
205
206
"in each affected database:\n"
207
"\n");
208
}
209
-pg_log(PG_WARNING,"%s\n",active_db->db_name);
+pg_log(PG_WARNING,"%s\n",active_db->db_name);
210
found_public_plpython_handler= true;
211
212
PQclear(res);