mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Rename various "freeze multixact" variables
It seems to make more sense to use "cutoff multixact" terminology throughout the backend code; "freeze" is associated with replacing of an Xid with FrozenTransactionId, which is not what we do for MultiXactIds. Andres Freund Some adjustments by Álvaro Herrera
This commit is contained in:
@ -5135,8 +5135,8 @@ heap_freeze_tuple(HeapTupleHeader tuple, TransactionId cutoff_xid,
|
||||
|
||||
/*
|
||||
* Note that this code handles IS_MULTI Xmax values, too, but only to mark
|
||||
* the tuple frozen if the updating Xid in the mxact is below the freeze
|
||||
* cutoff; it doesn't remove dead members of a very old multixact.
|
||||
* the tuple as not updated if the multixact is below the cutoff Multixact
|
||||
* given; it doesn't remove dead members of a very old multixact.
|
||||
*/
|
||||
xid = HeapTupleHeaderGetRawXmax(tuple);
|
||||
if ((tuple->t_infomask & HEAP_XMAX_IS_MULTI) ?
|
||||
|
Reference in New Issue
Block a user