diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2013-05-13 21:42:19 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2013-05-13 21:42:19 -0400 |
commit | d2b920cded4db973a7b69a628e109f2aee63012a (patch) | |
tree | 397cb2f665d31082994eb2caa461a560735742ae | |
parent | bd1710248795a495547a96f16d16592ad45f6943 (diff) | |
download | postgresql-d2b920cded4db973a7b69a628e109f2aee63012a.tar.gz postgresql-d2b920cded4db973a7b69a628e109f2aee63012a.zip |
pg_upgrade: Replace tabs in output string constants by spaces
-rw-r--r-- | contrib/pg_upgrade/function.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/pg_upgrade/function.c b/contrib/pg_upgrade/function.c index b24e43eebad..6e8ef7cf213 100644 --- a/contrib/pg_upgrade/function.c +++ b/contrib/pg_upgrade/function.c @@ -193,7 +193,7 @@ get_loadable_libraries(void) "in the \"pg_catalog\" schema. You can confirm this by executing\n" "in psql:\n" "\n" - " \\df *.plpython_call_handler\n" + " \\df *.plpython_call_handler\n" "\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" @@ -201,12 +201,12 @@ get_loadable_libraries(void) "shared object file. You can remove the \"public\" schema version\n" "of this function by running the following command:\n" "\n" - " DROP FUNCTION public.plpython_call_handler()\n" + " DROP FUNCTION public.plpython_call_handler()\n" "\n" "in each affected database:\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; } PQclear(res); |