Commit d2b920cd authored by Peter Eisentraut's avatar Peter Eisentraut

pg_upgrade: Replace tabs in output string constants by spaces

parent bd171024
...@@ -193,7 +193,7 @@ get_loadable_libraries(void) ...@@ -193,7 +193,7 @@ get_loadable_libraries(void)
"in the \"pg_catalog\" schema. You can confirm this by executing\n" "in the \"pg_catalog\" schema. You can confirm this by executing\n"
"in psql:\n" "in psql:\n"
"\n" "\n"
" \\df *.plpython_call_handler\n" " \\df *.plpython_call_handler\n"
"\n" "\n"
"The \"public\" schema version of this function was created by a\n" "The \"public\" schema version of this function was created by a\n"
"pre-8.1 install of plpython, and must be removed for pg_upgrade\n" "pre-8.1 install of plpython, and must be removed for pg_upgrade\n"
...@@ -201,12 +201,12 @@ get_loadable_libraries(void) ...@@ -201,12 +201,12 @@ get_loadable_libraries(void)
"shared object file. You can remove the \"public\" schema version\n" "shared object file. You can remove the \"public\" schema version\n"
"of this function by running the following command:\n" "of this function by running the following command:\n"
"\n" "\n"
" DROP FUNCTION public.plpython_call_handler()\n" " DROP FUNCTION public.plpython_call_handler()\n"
"\n" "\n"
"in each affected database:\n" "in each affected database:\n"
"\n"); "\n");
} }
pg_log(PG_WARNING, " %s\n", active_db->db_name); pg_log(PG_WARNING, " %s\n", active_db->db_name);
found_public_plpython_handler = true; found_public_plpython_handler = true;
} }
PQclear(res); PQclear(res);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment