diff options
| author | Heikki Linnakangas | 2023-12-08 07:47:15 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2023-12-08 07:47:15 +0000 |
| commit | b31ba5310b5176402b60abc0454a033b1210ab75 (patch) | |
| tree | 664161b9838a21c86e2402dc48f73d1336936270 /src/backend/access/transam/xlogrecovery.c | |
| parent | 15916ffb0468d0b1036ba661767fe6e1b5fb3ee8 (diff) | |
Rename ShmemVariableCache to TransamVariables
The old name was misleading: It's not a cache, the values kept in the
struct are the authoritative source.
Reviewed-by: Tristan Partin, Richard Guo
Discussion: https://www.postgresql.org/message-id/[email protected]
Diffstat (limited to 'src/backend/access/transam/xlogrecovery.c')
| -rw-r--r-- | src/backend/access/transam/xlogrecovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogrecovery.c b/src/backend/access/transam/xlogrecovery.c index c61566666aa..4bc4d3e3237 100644 --- a/src/backend/access/transam/xlogrecovery.c +++ b/src/backend/access/transam/xlogrecovery.c @@ -1869,7 +1869,7 @@ ApplyWalRecord(XLogReaderState *xlogreader, XLogRecord *record, TimeLineID *repl error_context_stack = &errcallback; /* - * ShmemVariableCache->nextXid must be beyond record's xid. + * TransamVariables->nextXid must be beyond record's xid. */ AdvanceNextFullTransactionIdPastXid(record->xl_xid); |
