Re: "analyze" putting wrong reltuples in pg_class - Mailing list pgsql-bugs

From Tom Lane
Subject Re: "analyze" putting wrong reltuples in pg_class
Date
Msg-id 28671.1028328644@sss.pgh.pa.us
Whole thread Raw
In response to "analyze" putting wrong reltuples in pg_class  (Ron Mayer <ron@intervideo.com>)
Responses Re: "analyze" putting wrong reltuples in pg_class  (Ron Mayer <ron@intervideo.com>)
List pgsql-bugs
Ron Mayer <ron@intervideo.com> writes:
> On a number of my tables, "analyze" seems to be putting the wrong value of
> "reltuples" in pg_class.  "vacuum" seems to be doing the right thing.

Hmm.  analyze by itself generates only an approximate estimate of the
row count (since it only examines a random sample of the rows).  But I'd
not have expected it to be off by a factor of 200.  Need more info.
What does VACUUM VERBOSE show?  Also, it would be interesting to see
what contrib/pgstattuple shows, if you can run that conveniently.
Can you say anything about your typical usage pattern on these tables?
(eg, numbers of inserts vs updates vs deletes)

BTW, it's quite likely that VACUUM FULL will make the problem go away,
so don't do that until we fully understand what's happening ...

            regards, tom lane

pgsql-bugs by date:

Previous
From: pgsql-bugs@postgresql.org
Date:
Subject: Bug #729: replacing a function used in an index yields incorrect query results.
Next
From: Ron Mayer
Date:
Subject: Re: "analyze" putting wrong reltuples in pg_class