@@ -512,7 +512,7 @@ heap_vacuum_rel(Relation rel, VacuumParams *params,
512
512
vacrel -> FreezeLimit = FreezeLimit ;
513
513
/* MultiXactCutoff controls MXID freezing (always <= OldestMxact) */
514
514
vacrel -> MultiXactCutoff = MultiXactCutoff ;
515
- /* Initialize state used to track oldest extant XID/XMID */
515
+ /* Initialize state used to track oldest extant XID/MXID */
516
516
vacrel -> NewRelfrozenXid = OldestXmin ;
517
517
vacrel -> NewRelminMxid = OldestMxact ;
518
518
vacrel -> skippedallvis = false;
@@ -1295,7 +1295,7 @@ lazy_scan_heap(LVRelState *vacrel)
1295
1295
* Note: our opinion of which blocks can be skipped can go stale immediately.
1296
1296
* It's okay if caller "misses" a page whose all-visible or all-frozen marking
1297
1297
* was concurrently cleared, though. All that matters is that caller scan all
1298
- * pages whose tuples might contain XIDs < OldestXmin, or XMIDs < OldestMxact.
1298
+ * pages whose tuples might contain XIDs < OldestXmin, or MXIDs < OldestMxact.
1299
1299
* (Actually, non-aggressive VACUUMs can choose to skip all-visible pages with
1300
1300
* older XIDs/MXIDs. The vacrel->skippedallvis flag will be set here when the
1301
1301
* choice to skip such a range is actually made, making everything safe.)
@@ -2012,7 +2012,7 @@ lazy_scan_noprune(LVRelState *vacrel,
2012
2012
* relfrozenxid to a value >= FreezeLimit (and be able to
2013
2013
* advance rel's relminmxid to a value >= MultiXactCutoff).
2014
2014
* The ongoing aggressive VACUUM won't be able to do that
2015
- * unless it can freeze an XID (or XMID ) from this tuple now.
2015
+ * unless it can freeze an XID (or MXID ) from this tuple now.
2016
2016
*
2017
2017
* The only safe option is to have caller perform processing
2018
2018
* of this page using lazy_scan_prune. Caller might have to
0 commit comments