diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/heap/heapam.c | 2 | ||||
-rw-r--r-- | src/backend/commands/vacuum.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index aab8d6fa4e5..5887166061a 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -7218,7 +7218,7 @@ heap_tuple_needs_eventual_freeze(HeapTupleHeader tuple) * heap_tuple_would_freeze * * Return value indicates if heap_prepare_freeze_tuple sibling function would - * freeze any of the XID/XMID fields from the tuple, given the same cutoffs. + * freeze any of the XID/MXID fields from the tuple, given the same cutoffs. * We must also deal with dead tuples here, since (xmin, xmax, xvac) fields * could be processed by pruning away the whole tuple instead of freezing. * diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c index 3670d1f1861..b60378122d7 100644 --- a/src/backend/commands/vacuum.c +++ b/src/backend/commands/vacuum.c @@ -951,7 +951,7 @@ get_all_vacuum_rels(int options) * oldestXmin and oldestMxact are the most recent values that can ever be * passed to vac_update_relstats() as frozenxid and minmulti arguments by our * vacuumlazy.c caller later on. These values should be passed when it turns - * out that VACUUM will leave no unfrozen XIDs/XMIDs behind in the table. + * out that VACUUM will leave no unfrozen XIDs/MXIDs behind in the table. */ bool vacuum_set_xid_limits(Relation rel, |