@@ -6078,7 +6078,7 @@ getOwnedSeqs(Archive *fout, TableInfo tblinfo[], int numTables)
60786078
60796079owning_tab = findTableByOid(seqinfo->owning_tab);
60806080if (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 tablewith 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)
67686768ruletableoid = atooid(PQgetvalue(res, i, i_ruletable));
67696769ruleinfo[i].ruletable = findTableByOid(ruletableoid);
67706770if (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 tablewith OID %u of pg_rewrite entry with OID %u not found\n",
67726772 ruletableoid, ruleinfo[i].dobj.catId.oid);
67736773ruleinfo[i].dobj.namespace = ruleinfo[i].ruletable->dobj.namespace;
67746774ruleinfo[i].dobj.dump = ruleinfo[i].ruletable->dobj.dump;
@@ -16101,7 +16101,7 @@ dumpSequence(Archive *fout, TableInfo *tbinfo)
1610116101TableInfo *owning_tab = findTableByOid(tbinfo->owning_tab);
1610216102
1610316103if (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 tablewith OID %u of sequence with OID %u not found\n",
1610516105 tbinfo->owning_tab, tbinfo->dobj.catId.oid);
1610616106
1610716107if (owning_tab->dobj.dump & DUMP_COMPONENT_DEFINITION)