summaryrefslogtreecommitdiff
path: root/src/backend/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/commands')
-rw-r--r--src/backend/commands/vacuum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c
index 29def1e94fa..0528d1b6ecb 100644
--- a/src/backend/commands/vacuum.c
+++ b/src/backend/commands/vacuum.c
@@ -1147,8 +1147,8 @@ vacuum_get_cutoffs(Relation rel, const VacuumParams params,
/*
* Also compute the multixact age for which freezing is urgent. This is
- * normally autovacuum_multixact_freeze_max_age, but may be less if we are
- * short of multixact member space.
+ * normally autovacuum_multixact_freeze_max_age, but may be less if
+ * multixact members are bloated.
*/
effective_multixact_freeze_max_age = MultiXactMemberFreezeThreshold();
@@ -1973,7 +1973,7 @@ vac_truncate_clog(TransactionId frozenXID,
* signaling twice?
*/
SetTransactionIdLimit(frozenXID, oldestxid_datoid);
- SetMultiXactIdLimit(minMulti, minmulti_datoid, false);
+ SetMultiXactIdLimit(minMulti, minmulti_datoid);
LWLockRelease(WrapLimitsVacuumLock);
}