Skip to content

Commit d2b920c

Browse files
committed
pg_upgrade: Replace tabs in output string constants by spaces
1 parent bd17102 commit d2b920c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/pg_upgrade/function.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -193,20 +193,20 @@ get_loadable_libraries(void)
193193
"in the \"pg_catalog\" schema. You can confirm this by executing\n"
194194
"in psql:\n"
195195
"\n"
196-
" \\df *.plpython_call_handler\n"
196+
" \\df *.plpython_call_handler\n"
197197
"\n"
198198
"The \"public\" schema version of this function was created by a\n"
199199
"pre-8.1 install of plpython, and must be removed for pg_upgrade\n"
200200
"to complete because it references a now-obsolete \"plpython\"\n"
201201
"shared object file. You can remove the \"public\" schema version\n"
202202
"of this function by running the following command:\n"
203203
"\n"
204-
" DROP FUNCTION public.plpython_call_handler()\n"
204+
" DROP FUNCTION public.plpython_call_handler()\n"
205205
"\n"
206206
"in each affected database:\n"
207207
"\n");
208208
}
209-
pg_log(PG_WARNING, " %s\n", active_db->db_name);
209+
pg_log(PG_WARNING, " %s\n", active_db->db_name);
210210
found_public_plpython_handler = true;
211211
}
212212
PQclear(res);

0 commit comments

Comments
 (0)