Re: On-disk bitmap index implementation - Mailing list pgsql-patches

From Heikki Linnakangas
Subject Re: On-disk bitmap index implementation
Date
Msg-id 4575A01C.5060600@enterprisedb.com
Whole thread Raw
In response to On-disk bitmap index implementation  (Gavin Sherry <swm@linuxworld.com.au>)
Responses Re: On-disk bitmap index implementation
List pgsql-patches
Gavin Sherry wrote:
> o Improving VACUUM support -- currently, VACUUM FULL means REINDEX for
>   bitmaps. Heikki Linnakangas offered to work on this. Heikki, are you
>   still interested?

BTW vacuuming seems quite broken as it is:

hlinnaka@heikkilaptop:~/pgsql.bitmap$ ~/pgsql.bitmap/bin/psql -a
postgres < vacuumtest.sql
drop table if exists test;
DROP TABLE
create table test (key int);
CREATE TABLE
create index test_bm on test using bitmap (key);
CREATE INDEX
insert into test values (1);
INSERT 0 1
delete from test;
DELETE 1
vacuum test;
VACUUM
insert into test values (2);
INSERT 0 1
select * from test where key = 1;
  key
-----
    2
(1 row)

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

pgsql-patches by date:

Previous
From: Tom Lane
Date:
Subject: Re: FAQ refresh
Next
From: "Filip Rembiałkowski"
Date:
Subject: typo in contrib/hstore/hstore_io.c