[BUGS] BUG #6406: Included pgAdmin does not have .sql file extension mapped

2012-01-22 Thread aren
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

[BUGS] BUG #6407: Crash on queries to gin index with multiply values

2012-01-22 Thread don
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

Re: [BUGS] BUG #6407: Crash on queries to gin index with multiply values

2012-01-22 Thread Tom Lane
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_