Re: [BUGS] GIN overlap vs empty arrays

2010-03-25 Thread Jeff
On Mar 25, 2010, at 11:44 AM, Tom Lane wrote: Hmm, that case is supposed to work, in 8.3 and later ... but it doesn't because of a stupid typo in contrib/intarray. This works. - thanks! -- Jeff Trout http://www.stuarthamm.net/ http://www.dellsmartexitin.com/ -- Sent via pgsql-bugs m

Re: [BUGS] GIN overlap vs empty arrays

2010-03-25 Thread Tom Lane
Jeff writes: > Ran into this and I'm trying to decide if this is functioning as > designed or if this is a bug that should be fixed: (PG 8.4.2) > create table gintest > ( > idList int[], > foo text > ); > create index gintest_gin_idx on gintest using gin(idList gin__int_ops); > in