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:56:15 +0200 |
commit | dbe43a4746f1c6a0cdf9710734388de27bf29b54 (patch) | |
tree | b1ffa7a8faad3ceb804cf015f99662d0b1f284fa /src | |
parent | 18138066ff3604658c9a753a10c56e9195d37d6b (diff) |
pg_dump: Fix newline in error message
The newline was incorrectly dropped in
5a191f697400560fa8f2cc11817072bf9055de73.
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 91e6f940727..5e28556c624 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -15276,7 +15276,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 */ |