Re: Correct syntax to create partial index on a boolean column

From: Craig Ringer <ringerc(at)ringerc(dot)id(dot)au>
To: Alban Hertroys <haramrae(at)gmail(dot)com>
Cc: Mike Christensen <mike(at)kitchenpc(dot)com>, pgsql-general(at)postgresql(dot)org
Subject: Re: Correct syntax to create partial index on a boolean column
Date: 2011-12-15 14:00:36
Message-ID: 4EE9FD84.4040808@ringerc.id.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 12/15/2011 03:53 PM, Alban Hertroys wrote:
> Correct, but...
> That's not a particularly useful index to create. That index just contains values of true where the associated column equals true - you're storing the same information twice.
It could be very handy if you have an extremely high selectivity index
(say 1:1000 or more) where you want to keep the index tiny, fast, and
very quick to scan.

I guess ideally Pg would be able to deduce that the index value is
always the same and just store a page list rather than a b-tree, but
it's a bit of a tiny use case.

--
Craig Ringer

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2011-12-15 14:37:38 Re: Server/Data Migration Advice
Previous Message Bèrto ëd Sèra 2011-12-15 13:42:09 Re: Server/Data Migration Advice