Re: Multi ordered select and indexing

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Antal Attila <antal(dot)attila(at)ritek(dot)hu>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Multi ordered select and indexing
Date: 2004-04-23 16:41:21
Message-ID: 20040423093937.B17459@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Fri, 23 Apr 2004, Antal Attila wrote:

> Hi!
>
> We have a complex problematic area. What is the simplest solution for
> the next query type:
>
> SELECT * FROM tablename ORDER BY col1 ASC, col2 DESC;
>
> In our experience, postgres cannot use a multi-colum index on (col1,
> col2) in this situation, becouse there are different directions after
> ORDER BY. Is custom operator class the easiest solution, which can solve
> the reverse indexing on col2? Our problem with this solution, is that we
> have to replace "DESC" with "USING myoperator". Is it possible, that
> postgres can recognize "myoperator" without replacing "DESC"?

Yes. You should be able to make an opclass where the operators are the
standard operators but in a different order which should get used when
doing DESC. I think there should be examples in the archives.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Bruno Wolff III 2004-04-23 17:37:16 Re: Multi ordered select and indexing
Previous Message Martin Marques 2004-04-23 15:07:35 Re: CONTEXT on PL/pgSQL