pg_dump: Fix newline in error message

The newline was incorrectly dropped in
a98c48debcd0620ab07608d53ee08fdb0e7a1edb.
This commit is contained in:
Peter Eisentraut 2019-05-04 16:54:30 +02:00
parent 8b3bce2017
commit bf0720233e

View File

@ -15874,7 +15874,7 @@ dumpTableSchema(Archive *fout, TableInfo *tbinfo)
{ {
/* With partitions there can only be one parent */ /* With partitions there can only be one parent */
if (tbinfo->numParents != 1) 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); tbinfo->numParents, tbinfo->dobj.name);
/* Perform ALTER TABLE on the parent */ /* Perform ALTER TABLE on the parent */