diff options
Diffstat (limited to 'src/backend/access/transam/xact.c')
-rw-r--r-- | src/backend/access/transam/xact.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index bd60b55574c..116de1175b2 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -1282,7 +1282,7 @@ RecordTransactionCommit(void) bool markXidCommitted = TransactionIdIsValid(xid); TransactionId latestXid = InvalidTransactionId; int nrels; - RelFileNode *rels; + RelFileLocator *rels; int nchildren; TransactionId *children; int ndroppedstats = 0; @@ -1705,7 +1705,7 @@ RecordTransactionAbort(bool isSubXact) TransactionId xid = GetCurrentTransactionIdIfAny(); TransactionId latestXid; int nrels; - RelFileNode *rels; + RelFileLocator *rels; int ndroppedstats = 0; xl_xact_stats_item *droppedstats = NULL; int nchildren; @@ -5586,7 +5586,7 @@ xactGetCommittedChildren(TransactionId **ptr) XLogRecPtr XactLogCommitRecord(TimestampTz commit_time, int nsubxacts, TransactionId *subxacts, - int nrels, RelFileNode *rels, + int nrels, RelFileLocator *rels, int ndroppedstats, xl_xact_stats_item *droppedstats, int nmsgs, SharedInvalidationMessage *msgs, bool relcacheInval, @@ -5597,7 +5597,7 @@ XactLogCommitRecord(TimestampTz commit_time, xl_xact_xinfo xl_xinfo; xl_xact_dbinfo xl_dbinfo; xl_xact_subxacts xl_subxacts; - xl_xact_relfilenodes xl_relfilenodes; + xl_xact_relfilelocators xl_relfilelocators; xl_xact_stats_items xl_dropped_stats; xl_xact_invals xl_invals; xl_xact_twophase xl_twophase; @@ -5651,8 +5651,8 @@ XactLogCommitRecord(TimestampTz commit_time, if (nrels > 0) { - xl_xinfo.xinfo |= XACT_XINFO_HAS_RELFILENODES; - xl_relfilenodes.nrels = nrels; + xl_xinfo.xinfo |= XACT_XINFO_HAS_RELFILELOCATORS; + xl_relfilelocators.nrels = nrels; info |= XLR_SPECIAL_REL_UPDATE; } @@ -5710,12 +5710,12 @@ XactLogCommitRecord(TimestampTz commit_time, nsubxacts * sizeof(TransactionId)); } - if (xl_xinfo.xinfo & XACT_XINFO_HAS_RELFILENODES) + if (xl_xinfo.xinfo & XACT_XINFO_HAS_RELFILELOCATORS) { - XLogRegisterData((char *) (&xl_relfilenodes), - MinSizeOfXactRelfilenodes); + XLogRegisterData((char *) (&xl_relfilelocators), + MinSizeOfXactRelfileLocators); XLogRegisterData((char *) rels, - nrels * sizeof(RelFileNode)); + nrels * sizeof(RelFileLocator)); } if (xl_xinfo.xinfo & XACT_XINFO_HAS_DROPPED_STATS) @@ -5758,7 +5758,7 @@ XactLogCommitRecord(TimestampTz commit_time, XLogRecPtr XactLogAbortRecord(TimestampTz abort_time, int nsubxacts, TransactionId *subxacts, - int nrels, RelFileNode *rels, + int nrels, RelFileLocator *rels, int ndroppedstats, xl_xact_stats_item *droppedstats, int xactflags, TransactionId twophase_xid, const char *twophase_gid) @@ -5766,7 +5766,7 @@ XactLogAbortRecord(TimestampTz abort_time, xl_xact_abort xlrec; xl_xact_xinfo xl_xinfo; xl_xact_subxacts xl_subxacts; - xl_xact_relfilenodes xl_relfilenodes; + xl_xact_relfilelocators xl_relfilelocators; xl_xact_stats_items xl_dropped_stats; xl_xact_twophase xl_twophase; xl_xact_dbinfo xl_dbinfo; @@ -5800,8 +5800,8 @@ XactLogAbortRecord(TimestampTz abort_time, if (nrels > 0) { - xl_xinfo.xinfo |= XACT_XINFO_HAS_RELFILENODES; - xl_relfilenodes.nrels = nrels; + xl_xinfo.xinfo |= XACT_XINFO_HAS_RELFILELOCATORS; + xl_relfilelocators.nrels = nrels; info |= XLR_SPECIAL_REL_UPDATE; } @@ -5864,12 +5864,12 @@ XactLogAbortRecord(TimestampTz abort_time, nsubxacts * sizeof(TransactionId)); } - if (xl_xinfo.xinfo & XACT_XINFO_HAS_RELFILENODES) + if (xl_xinfo.xinfo & XACT_XINFO_HAS_RELFILELOCATORS) { - XLogRegisterData((char *) (&xl_relfilenodes), - MinSizeOfXactRelfilenodes); + XLogRegisterData((char *) (&xl_relfilelocators), + MinSizeOfXactRelfileLocators); XLogRegisterData((char *) rels, - nrels * sizeof(RelFileNode)); + nrels * sizeof(RelFileLocator)); } if (xl_xinfo.xinfo & XACT_XINFO_HAS_DROPPED_STATS) @@ -6010,7 +6010,7 @@ xact_redo_commit(xl_xact_parsed_commit *parsed, XLogFlush(lsn); /* Make sure files supposed to be dropped are dropped */ - DropRelationFiles(parsed->xnodes, parsed->nrels, true); + DropRelationFiles(parsed->xlocators, parsed->nrels, true); } if (parsed->nstats > 0) @@ -6121,7 +6121,7 @@ xact_redo_abort(xl_xact_parsed_abort *parsed, TransactionId xid, */ XLogFlush(lsn); - DropRelationFiles(parsed->xnodes, parsed->nrels, true); + DropRelationFiles(parsed->xlocators, parsed->nrels, true); } if (parsed->nstats > 0) |