Re: Multi-column index not used, new flipped column index is

From: Markus Schaber <schabi(at)logix-tt(dot)com>
To: ogjunk-pgjedan(at)yahoo(dot)com
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Multi-column index not used, new flipped column index is
Date: 2006-05-10 16:46:10
Message-ID: 446218D2.8030002@logix-tt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi, Otis,

ogjunk-pgjedan(at)yahoo(dot)com wrote:

> I'm using PG 8.0.3 and recently spotted a query that was not using a
> multi-column index I had created. The index looks like:
>
> CREATE INDEX ..... ON FooTable(fkColumnOne, fkColumnTwo);
>
> The query that was not using the index was using:
>
> SELECT .... a bunch of columns and joins .... WHERE
> FooTable.fkColumnTwo=1000;

That's how it is supposed to be currently. AFAIK, Oracle has a technique
called "index skip scan" that could take (limited) use of that second
index, but PostgreSQL currently does not support them.

> So I added another index where the indexed columns are flipped:
>
> CREATE INDEX ..... ON FooTable(fkColumnTwo, fkColumnOne);
>
> Now the query started to use that index -- gooooood! But now I have 2
> indices that are nearly the same, and that means overhead during
> INSERTs/DELETEs. :(

> Is there a way to get this to use that first index, so I don't have
> to have this additional index? If I had PG 8.1.3, would PG know how
> to use that first index? I seem to recall something about this
> somewhere... but I don't see it at
> http://www.postgresql.org/docs/whatsnew .

Bitmap Index Scans can be your solution, but AFAIK they were invented in
8.1.

For bitmap index scans, you have one index on fkColumnOne and one on
fkColumnTwo, and the query planner knows to combine them when both
columns are given in a WHERE clause.

HTH,
Markus
--
Markus Schaber | Logical Tracking&Tracing International AG
Dipl. Inf. | Software Development GIS

Fight against software patents in EU! www.ffii.org www.nosoftwarepatents.org

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message ogjunk-pgjedan 2006-05-10 18:13:59 Help with a seq scan on multi-million row table
Previous Message ogjunk-pgjedan 2006-05-10 16:21:43 Multi-column index not used, new flipped column index is