Re: "analyze" putting wrong reltuples in pg_class

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: "analyze" putting wrong reltuples in pg_class
Дата
Msg-id 28671.1028328644@sss.pgh.pa.us
обсуждение исходный текст
Ответ на "analyze" putting wrong reltuples in pg_class  (Ron Mayer <ron@intervideo.com>)
Ответы Re: "analyze" putting wrong reltuples in pg_class  (Ron Mayer <ron@intervideo.com>)
Список 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 по дате отправления:

Предыдущее
От: pgsql-bugs@postgresql.org
Дата:
Сообщение: Bug #729: replacing a function used in an index yields incorrect query results.
Следующее
От: Ron Mayer
Дата:
Сообщение: Re: "analyze" putting wrong reltuples in pg_class