Re: [PATCH] bitmap indexes

From: Antonin Houska <antonin(dot)houska(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: [PATCH] bitmap indexes
Date: 2013-09-26 07:11:49
Message-ID: 5243DE35.7040809@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 09/26/2013 12:20 AM, Alvaro Herrera wrote:

> This led me to research how these indexes are stored. I note that what
> we're doing here is to create another regular table and a btree index on
> top of it, and those are the ones that actually store the index data.
> This seems grotty and completely unlike the way we do things elsewhere
> (compare GIN indexes which have rbtrees inside them).

Perhaps you meant that GIN has B-tree inside. RBTree is in fact used by
GiST, but only as in-memory structure during the search - to get the
tuples sorted by distance.

// Antonin Houska (Tony)

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Fabien COELHO 2013-09-26 08:31:44 Re: pgbench progress report improvements - split 3 v2
Previous Message Erik Rijkers 2013-09-26 06:54:42 Re: Minmax indexes