BUG #14158: PostgreSQL 9.6 bloom don't support unlogged table?

From: digoal(at)126(dot)com
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #14158: PostgreSQL 9.6 bloom don't support unlogged table?
Date: 2016-05-25 09:54:02
Message-ID: 20160525095402.19424.62615@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 14158
Logged by: Zhou Digoal
Email address: digoal(at)126(dot)com
PostgreSQL version: 9.6beta1
Operating system: CentOS 6.x x64
Description:

master=# create extension bloom;
CREATE EXTENSION ^
master=# create unlogged table tbl12(id int);
CREATE TABLE

master=# \set VERBOSITY verbose
master=# create index idx1 on tbl12 using bloom (id);
ERROR: XX000: index "idx1" already contains data
LOCATION: blbuildempty, blinsert.c:164

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message hubert depesz lubaczewski 2016-05-25 10:37:50 Too high rate of progress information from pg_basebackup
Previous Message digoal 2016-05-25 09:52:07 BUG #14157: PostgreSQL 9.6 foreign table can improve with this case