Re: Why don't use index on x when ORDER BY x, y?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Why don't use index on x when ORDER BY x, y?
Дата
Msg-id 23348.1416843526@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Why don't use index on x when ORDER BY x, y?  (Vlad Arkhipov <arhipov@dc.baikal.ru>)
Список pgsql-performance
Vlad Arkhipov <arhipov@dc.baikal.ru> writes:
> I wonder why Postgres does not use index in the query below?

Because it's useless: you'd still have to do a sort, and an indexscan
is going to be a slower source of data for the sort than a seqscan.

There's been some experimentation of late with a "partial sort" capability
that could take advantage of partially-ordered input, which might make
this kind of thing interesting after all.  But it's not committed and
might never be: it's far from clear that it'd be a win in many cases.

            regards, tom lane


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

Предыдущее
От: Robert Klemme
Дата:
Сообщение: Re: Why don't use index on x when ORDER BY x, y?
Следующее
От: Scott Marlowe
Дата:
Сообщение: Small performance regression in 9.2 has a big impact