]> granicus.if.org Git - postgresql/commit
Fix full-table-vacuum request mechanism for MultiXactIds
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 28 Nov 2013 19:52:54 +0000 (16:52 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 30 Nov 2013 00:48:11 +0000 (21:48 -0300)
commitf5f92bdc44ffdf577244e0d055825cacd0cdea10
treee2314619870700916729b33348a33d94f394b22c
parentd9484ab5f3cbcfea64536fec333723f9aa4c0b2c
Fix full-table-vacuum request mechanism for MultiXactIds

While autovacuum dutifully launched anti-multixact-wraparound vacuums
when the multixact "age" was reached, the vacuum code was not aware that
it needed to make them be full table vacuums.  As the resulting
partial-table vacuums aren't capable of actually increasing relminmxid,
autovacuum continued to launch anti-wraparound vacuums that didn't have
the intended effect, until age of relfrozenxid caused the vacuum to
finally be a full table one via vacuum_freeze_table_age.

To fix, introduce logic for multixacts similar to that for plain
TransactionIds, using the same GUCs.

Backpatch to 9.3, where permanent MultiXactIds were introduced.

Andres Freund, some cleanup by Álvaro
src/backend/access/transam/multixact.c
src/backend/commands/cluster.c
src/backend/commands/vacuum.c
src/backend/commands/vacuumlazy.c
src/include/access/multixact.h
src/include/commands/vacuum.h