The following bug has been logged on the website:
Bug reference: 6406
Logged by: Aren Cambre
Email address: a...@arencambre.com
PostgreSQL version: 9.1.2
Operating system: Windows 7 x64
Description:
When I install Postgres, the included pgAdmin III is not set up corre
The following bug has been logged on the website:
Bug reference: 6407
Logged by: Yury Don
Email address: d...@rosfirm.ru
PostgreSQL version: 9.1.2
Operating system: Linux (Debian)
Description:
When making "in" query to fiels with gin index, server crashes. Below
crea
d...@rosfirm.ru writes:
> When making "in" query to fiels with gin index, server crashes. Below
> create table tmp(id serial not null primary key, f1 integer, f2 text);
> insert into tmp (f1,f2) values (1,'a'),(2,'b'),(3,'c');
> create index tmp_f1_idx on tmp using gin (f1);
> create index tmp_f2_