Re: Bitmap index thoughts

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: Bitmap index thoughts
Дата
Msg-id 45CB4666.6090404@enterprisedb.com
обсуждение исходный текст
Ответ на Re: Bitmap index thoughts  (Gavin Sherry <swm@alcove.com.au>)
Ответы Re: Bitmap index thoughts
Re: Bitmap index thoughts (another segfault)
Список pgsql-hackers
Gavin Sherry wrote:
> I will update the code tomorrow. The focus will be cleaning up the
> executor modifications. Please look else where for now.

I'm getting a segfault with this test script:

--------
CREATE TABLE bmtest (i int);

INSERT INTO bmtest SELECT 1 FROM generate_series(1,100000) a;
INSERT INTO bmtest SELECT 10 FROM generate_series(1,100) a;
DELETE FROM bmtest WHERE i = 1;
VACUUM bmtest;

CREATE INDEX i_bmtest ON bmtest USING bitmap (i);

INSERT INTO bmtest SELECT 10 FROM generate_series(1,100000) a;
--------


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


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: HOT for PostgreSQL 8.3
Следующее
От: Stefan Kaltenbrunner
Дата:
Сообщение: Re: Re: [COMMITTERS] pgsql: Reduce WAL activity for page splits: > Currently, an index split