]> granicus.if.org Git - postgresql/commit
Avoid having vacuum set reltuples to 0 on non-empty relations in the
authorAndrew Gierth <rhodiumtoad@postgresql.org>
Thu, 16 Mar 2017 22:33:38 +0000 (22:33 +0000)
committerAndrew Gierth <rhodiumtoad@postgresql.org>
Thu, 16 Mar 2017 22:33:38 +0000 (22:33 +0000)
commita494ff4b012b5ce89b2549d5dab6b66604083bf0
treea7e67298a293f0c4337e19f59c0f378e7dd4c69f
parent28fb0f10c9c38a4803b9fc09c5524efe9858a34a
Avoid having vacuum set reltuples to 0 on non-empty relations in the
presence of page pins, which leads to serious estimation errors in the
planner.  This particularly affects small heavily-accessed tables,
especially where locking (e.g. from FK constraints) forces frequent
vacuums for mxid cleanup.

Fix by keeping separate track of pages whose live tuples were actually
counted vs. pages that were only scanned for freezing purposes.  Thus,
reltuples can only be set to 0 if all pages of the relation were
actually counted.

Backpatch to all supported versions.

Per bug #14057 from Nicolas Baccelli, analyzed by me.

Discussion: https://postgr.es/m/20160331103739.8956.94469@wrigleys.postgresql.org
src/backend/commands/vacuumlazy.c