Re: limit clause breaks query planner?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: limit clause breaks query planner?
Дата
Msg-id 25328.1220548472@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: limit clause breaks query planner?  (Guillaume Cottenceau <gc@mnc.ch>)
Ответы Re: limit clause breaks query planner?  ("Scott Carey" <scott@richrelevance.com>)
Re: limit clause breaks query planner?  (Gregory Stark <stark@enterprisedb.com>)
Список pgsql-performance
Guillaume Cottenceau <gc@mnc.ch> writes:
> It seems to me that if the correlation is 0.99[1], and you're
> looking for less than 1% of rows, the expected rows may be at the
> beginning or at the end of the heap?

Right, but if you know the value being searched for, you could then
estimate where it is in the table by consulting the histogram.

Actually, an even easier hack (which would have the nice property of not
needing to know the exact value being searched for), would simply use
the existing cost estimates if the WHERE variables have low correlation
(meaning the random-locations assumption is probably good), but apply
some sort of penalty factor if the correlation is high.  This would
amount to assuming that the universe is perverse and high correlation
will always mean that the rows we want are at the wrong end of the table
not the right one.  But any DBA will tell you that the universe is
indeed perverse ;-)

OTOH, since indexscans get a cost estimate reduction in the presence of
high correlation, we're already biasing the choice in the direction of
indexscans for high correlation.  We may not need to do it twice.
I don't recall whether the OP ever showed us his statistics for the
table in question --- did it even appear to have high correlation?

            regards, tom lane

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

Предыдущее
От: Matthew Wakeling
Дата:
Сообщение: Re: limit clause breaks query planner?
Следующее
От: "Scott Carey"
Дата:
Сообщение: Re: limit clause breaks query planner?