Re: Why don't use index on x when ORDER BY x, y? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Why don't use index on x when ORDER BY x, y?
Date
Msg-id 23348.1416843526@sss.pgh.pa.us
Whole thread Raw
In response to Why don't use index on x when ORDER BY x, y?  (Vlad Arkhipov <arhipov@dc.baikal.ru>)
List 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 by date:

Previous
From: Robert Klemme
Date:
Subject: Re: Why don't use index on x when ORDER BY x, y?
Next
From: Scott Marlowe
Date:
Subject: Small performance regression in 9.2 has a big impact