aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-02-17 18:58:55 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-02-17 18:58:55 -0500
commit363ac78aee37790a1f932ee3050bdd21085aabfe (patch)
tree127996d7046355d82978144bfd148fa792e729e1
parenta029d2cf4203f8f240bae4651e62c2358673b9f4 (diff)
downloadpostgresql-363ac78aee37790a1f932ee3050bdd21085aabfe.tar.gz
postgresql-363ac78aee37790a1f932ee3050bdd21085aabfe.zip
pg_dump: Message style improvements
-rw-r--r--src/bin/pg_dump/pg_dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 746b7f8e8b6..89db3103bc7 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -6078,7 +6078,7 @@ getOwnedSeqs(Archive *fout, TableInfo tblinfo[], int numTables)
owning_tab = findTableByOid(seqinfo->owning_tab);
if (owning_tab == NULL)
- exit_horribly(NULL, "failed sanity check, parent table OID %u of sequence OID %u not found\n",
+ exit_horribly(NULL, "failed sanity check, parent table with OID %u of sequence with OID %u not found\n",
seqinfo->owning_tab, seqinfo->dobj.catId.oid);
/*
@@ -6768,7 +6768,7 @@ getRules(Archive *fout, int *numRules)
ruletableoid = atooid(PQgetvalue(res, i, i_ruletable));
ruleinfo[i].ruletable = findTableByOid(ruletableoid);
if (ruleinfo[i].ruletable == NULL)
- exit_horribly(NULL, "failed sanity check, parent table OID %u of pg_rewrite entry OID %u not found\n",
+ exit_horribly(NULL, "failed sanity check, parent table with OID %u of pg_rewrite entry with OID %u not found\n",
ruletableoid, ruleinfo[i].dobj.catId.oid);
ruleinfo[i].dobj.namespace = ruleinfo[i].ruletable->dobj.namespace;
ruleinfo[i].dobj.dump = ruleinfo[i].ruletable->dobj.dump;
@@ -16101,7 +16101,7 @@ dumpSequence(Archive *fout, TableInfo *tbinfo)
TableInfo *owning_tab = findTableByOid(tbinfo->owning_tab);
if (owning_tab == NULL)
- exit_horribly(NULL, "failed sanity check, parent table OID %u of sequence OID %u not found\n",
+ exit_horribly(NULL, "failed sanity check, parent table with OID %u of sequence with OID %u not found\n",
tbinfo->owning_tab, tbinfo->dobj.catId.oid);
if (owning_tab->dobj.dump & DUMP_COMPONENT_DEFINITION)