]> granicus.if.org Git - postgresql/commit
Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerly
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 3 Apr 2008 16:27:25 +0000 (16:27 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 3 Apr 2008 16:27:25 +0000 (16:27 +0000)
commit51e1445f1008a4156f5545597717f372f1963298
tree805994386232e8c02a7ea9b2c8403acfcd0f0946
parentf1e0d5a8ca5dfacee7aff7afd627b0db00be410a
Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerly
classed all as "dead"; also get it to count DEAD item pointers as dead rows,
instead of ignoring them as before.  Also improve matters so that tuples
previously inserted or deleted by our own transaction are handled nicely:
the stats collector's live-tuple and dead-tuple counts will end up correct
after our transaction ends, regardless of whether we end in commit or abort.

While there's more work that could be done to improve the counting of in-doubt
tuples in both VACUUM and ANALYZE, this commit is enough to alleviate some
known bad behaviors in 8.3; and the other stuff that's been discussed seems
like research projects anyway.

Pavan Deolasee and Tom Lane
src/backend/commands/analyze.c
src/backend/postmaster/pgstat.c
src/include/pgstat.h