diff options
Diffstat (limited to 'src/backend/commands/vacuum.c')
-rw-r--r-- | src/backend/commands/vacuum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/vacuum.c b/src/backend/commands/vacuum.c index 85b04832479..698bb3531cc 100644 --- a/src/backend/commands/vacuum.c +++ b/src/backend/commands/vacuum.c @@ -1137,11 +1137,11 @@ vac_truncate_clog(TransactionId frozenXID, return; /* - * Truncate CLOG and CommitTs to the oldest computed value. Note we don't - * truncate multixacts; that will be done by the next checkpoint. + * Truncate CLOG, multixact and CommitTs to the oldest computed value. */ TruncateCLOG(frozenXID); TruncateCommitTs(frozenXID, true); + TruncateMultiXact(minMulti, minmulti_datoid, false); /* * Update the wrap limit for GetNewTransactionId and creation of new |