Re: local selectivity estimation - computing frequency of predicates

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: local selectivity estimation - computing frequency of predicates
Дата
Msg-id 18791.1176473594@sss.pgh.pa.us
обсуждение исходный текст
Ответ на local selectivity estimation - computing frequency of predicates  ("Avdhoot Kishore Saple" <Avdhoot_Saple@infosys.com>)
Список pgsql-performance
"Avdhoot Kishore Saple" <Avdhoot_Saple@infosys.com> writes:
> How to compute the frequency of predicate (e.g. Salary > $70000) in an
> SQL query from a DB's pre-defined indexes?". I'm specifically looking at
> how to retrieve information about indices (like number of pages at each
> level of index, range of attribute values etc.)

I don't think what you're looking for is exposed anywhere.  Postgres
doesn't rely on indexes for statistical information anyway; the
pg_statistic system catalog (see also pg_stats view) is used for that.

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Avdhoot Kishore Saple"
Дата:
Сообщение: local selectivity estimation - computing frequency of predicates
Следующее
От: Steve
Дата:
Сообщение: Re: Question about memory allocations