diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-05-04 16:54:30 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-05-04 16:54:30 +0200 |
commit | bf0720233ec8f82edb6d55d1668347f9ab60e2f6 (patch) | |
tree | 0c9cefe06a993a3b5b17ba36c54b9a74d884348c /src | |
parent | 8b3bce2017b15e05f000c3c5947653a3e2c5a29f (diff) |
pg_dump: Fix newline in error message
The newline was incorrectly dropped in
a98c48debcd0620ab07608d53ee08fdb0e7a1edb.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |