Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 363ac78

Browse files
committed
pg_dump: Message style improvements
1 parent a029d2c commit 363ac78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6078,7 +6078,7 @@ getOwnedSeqs(Archive *fout, TableInfo tblinfo[], int numTables)
60786078

60796079
owning_tab = findTableByOid(seqinfo->owning_tab);
60806080
if (owning_tab == NULL)
6081-
exit_horribly(NULL, "failed sanity check, parent table OID %u of sequence OID %u not found\n",
6081+
exit_horribly(NULL, "failed sanity check, parent table with OID %u of sequence with OID %u not found\n",
60826082
seqinfo->owning_tab, seqinfo->dobj.catId.oid);
60836083

60846084
/*
@@ -6768,7 +6768,7 @@ getRules(Archive *fout, int *numRules)
67686768
ruletableoid = atooid(PQgetvalue(res, i, i_ruletable));
67696769
ruleinfo[i].ruletable = findTableByOid(ruletableoid);
67706770
if (ruleinfo[i].ruletable == NULL)
6771-
exit_horribly(NULL, "failed sanity check, parent table OID %u of pg_rewrite entry OID %u not found\n",
6771+
exit_horribly(NULL, "failed sanity check, parent table with OID %u of pg_rewrite entry with OID %u not found\n",
67726772
ruletableoid, ruleinfo[i].dobj.catId.oid);
67736773
ruleinfo[i].dobj.namespace = ruleinfo[i].ruletable->dobj.namespace;
67746774
ruleinfo[i].dobj.dump = ruleinfo[i].ruletable->dobj.dump;
@@ -16101,7 +16101,7 @@ dumpSequence(Archive *fout, TableInfo *tbinfo)
1610116101
TableInfo *owning_tab = findTableByOid(tbinfo->owning_tab);
1610216102

1610316103
if (owning_tab == NULL)
16104-
exit_horribly(NULL, "failed sanity check, parent table OID %u of sequence OID %u not found\n",
16104+
exit_horribly(NULL, "failed sanity check, parent table with OID %u of sequence with OID %u not found\n",
1610516105
tbinfo->owning_tab, tbinfo->dobj.catId.oid);
1610616106

1610716107
if (owning_tab->dobj.dump & DUMP_COMPONENT_DEFINITION)

0 commit comments

Comments
 (0)