From: Peter Eisentraut Date: Sat, 4 May 2019 14:54:30 +0000 (+0200) Subject: pg_dump: Fix newline in error message X-Git-Tag: REL_11_3~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf0720233ec8f82edb6d55d1668347f9ab60e2f6;p=thirdparty%2Fpostgresql.git pg_dump: Fix newline in error message The newline was incorrectly dropped in a98c48debcd0620ab07608d53ee08fdb0e7a1edb. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 3ab79d5254c..e6a116cefff 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -15874,7 +15874,7 @@ dumpTableSchema(Archive *fout, TableInfo *tbinfo) { /* With partitions there can only be one parent */ if (tbinfo->numParents != 1) - exit_horribly(NULL, "invalid number of parents %d for table \"%s\"", + exit_horribly(NULL, "invalid number of parents %d for table \"%s\"\n", tbinfo->numParents, tbinfo->dobj.name); /* Perform ALTER TABLE on the parent */