mirror of
https://github.com/postgres/postgres.git
synced 2025-11-04 20:11:56 +03:00
Standardize rmgrdesc recovery conflict XID output.
Standardize on the name snapshotConflictHorizon for all XID fields from
WAL records that generate recovery conflicts when in hot standby mode.
This supersedes the previous latestRemovedXid naming convention.
The new naming convention places emphasis on how the values are actually
used by REDO routines. How the values are generated during original
execution (details of which vary by record type) is deemphasized. Users
of tools like pg_waldump can now grep for snapshotConflictHorizon to see
all potential sources of recovery conflicts in a standardized way,
without necessarily having to consider which specific record types might
be involved.
Also bring a couple of WAL record types that didn't follow any kind of
naming convention into line. These are heapam's VISIBLE record type and
SP-GiST's VACUUM_REDIRECT record type. Now every WAL record whose REDO
routine calls ResolveRecoveryConflictWithSnapshot() passes through the
snapshotConflictHorizon field from its WAL record. This is follow-up
work to the refactoring from commit 9e540599 that made FREEZE_PAGE WAL
records use a standard snapshotConflictHorizon style XID cutoff.
No bump in XLOG_PAGE_MAGIC, since the underlying format of affected WAL
records doesn't change.
Author: Peter Geoghegan <pg@bowt.ie>
Reviewed-By: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/CAH2-Wzm2CQUmViUq7Opgk=McVREHSOorYaAjR1ZpLYkRN7_dPw@mail.gmail.com
This commit is contained in:
@@ -187,7 +187,7 @@ typedef struct xl_btree_reuse_page
|
||||
{
|
||||
RelFileLocator locator;
|
||||
BlockNumber block;
|
||||
FullTransactionId latestRemovedFullXid;
|
||||
FullTransactionId snapshotConflictHorizon;
|
||||
} xl_btree_reuse_page;
|
||||
|
||||
#define SizeOfBtreeReusePage (sizeof(xl_btree_reuse_page))
|
||||
@@ -199,7 +199,7 @@ typedef struct xl_btree_reuse_page
|
||||
* when btinsert() is called.
|
||||
*
|
||||
* The records are very similar. The only difference is that xl_btree_delete
|
||||
* has to include a latestRemovedXid field to generate recovery conflicts.
|
||||
* has a snapshotConflictHorizon field to generate recovery conflicts.
|
||||
* (VACUUM operations can just rely on earlier conflicts generated during
|
||||
* pruning of the table whose TIDs the to-be-deleted index tuples point to.
|
||||
* There are also small differences between each REDO routine that we don't go
|
||||
@@ -232,7 +232,7 @@ typedef struct xl_btree_vacuum
|
||||
|
||||
typedef struct xl_btree_delete
|
||||
{
|
||||
TransactionId latestRemovedXid;
|
||||
TransactionId snapshotConflictHorizon;
|
||||
uint16 ndeleted;
|
||||
uint16 nupdated;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user