@@ -6078,7 +6078,7 @@ getOwnedSeqs(Archive *fout, TableInfo tblinfo[], int numTables)
6078
6078
6079
6079
owning_tab = findTableByOid(seqinfo->owning_tab);
6080
6080
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",
6082
6082
seqinfo->owning_tab, seqinfo->dobj.catId.oid);
6083
6083
6084
6084
/*
@@ -6768,7 +6768,7 @@ getRules(Archive *fout, int *numRules)
6768
6768
ruletableoid = atooid(PQgetvalue(res, i, i_ruletable));
6769
6769
ruleinfo[i].ruletable = findTableByOid(ruletableoid);
6770
6770
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",
6772
6772
ruletableoid, ruleinfo[i].dobj.catId.oid);
6773
6773
ruleinfo[i].dobj.namespace = ruleinfo[i].ruletable->dobj.namespace;
6774
6774
ruleinfo[i].dobj.dump = ruleinfo[i].ruletable->dobj.dump;
@@ -16101,7 +16101,7 @@ dumpSequence(Archive *fout, TableInfo *tbinfo)
16101
16101
TableInfo *owning_tab = findTableByOid(tbinfo->owning_tab);
16102
16102
16103
16103
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",
16105
16105
tbinfo->owning_tab, tbinfo->dobj.catId.oid);
16106
16106
16107
16107
if (owning_tab->dobj.dump & DUMP_COMPONENT_DEFINITION)
0 commit comments