Re: [HACKERS] Partial match fix for fast scan

2014-04-10 Thread Heikki Linnakangas
On 04/10/2014 10:00 PM, Alexander Korotkov wrote: On Thu, Apr 10, 2014 at 8:22 PM, Fabrízio de Royes Mello < fabriziome...@gmail.com> wrote: On Thu, Apr 10, 2014 at 11:09 AM, Alexander Korotkov wrote: GIN partial match appears to be broken after fast scan. Following simple test case raises

Re: [HACKERS] Partial match fix for fast scan

2014-04-10 Thread Alexander Korotkov
On Thu, Apr 10, 2014 at 8:22 PM, Fabrízio de Royes Mello < fabriziome...@gmail.com> wrote: > > On Thu, Apr 10, 2014 at 11:09 AM, Alexander Korotkov > wrote: > >> Hi, >> >> GIN partial match appears to be broken after fast scan. Following simple >> test case raises assertion failure. >> >> create

Re: [HACKERS] Partial match fix for fast scan

2014-04-10 Thread Fabrízio de Royes Mello
On Thu, Apr 10, 2014 at 11:09 AM, Alexander Korotkov wrote: > Hi, > > GIN partial match appears to be broken after fast scan. Following simple > test case raises assertion failure. > > create extension btree_gin; > create table test as (select id, random() as val from > generate_series(1,100)

[HACKERS] Partial match fix for fast scan

2014-04-10 Thread Alexander Korotkov
Hi, GIN partial match appears to be broken after fast scan. Following simple test case raises assertion failure. create extension btree_gin; create table test as (select id, random() as val from generate_series(1,100) id); create index test_idx on test using gin (val); vacuum test; select * f