Re: Bad row estimates

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Bad row estimates
Дата
Msg-id 14850.1141488599@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Bad row estimates  (Greg Stark <gsstark@mit.edu>)
Ответы Re: Bad row estimates  (Greg Stark <gsstark@mit.edu>)
Список pgsql-performance
Greg Stark <gsstark@mit.edu> writes:
> (I don't think the end_ts in the index is buying you much, despite its
> appearance in the Index Cond in the plan.)

Well, it saves some trips to the heap, but the indexscan is still going
to run from the beginning of the index to start_ts = now(), because
btree has no idea that there's any correlation between the two index
columns.

If you could put some a-priori bound on the interval width, you could
add a WHERE constraint "AND now() - max_width <= start_ts", which'd
constrain the index scan and possibly also get you a better planner
estimate.  Otherwise I think you really need a special datatype for time
intervals and a GIST or r-tree index on it :-(.

            regards, tom lane

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

Предыдущее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: Bad row estimates
Следующее
От: Greg Stark
Дата:
Сообщение: Re: Bad row estimates