Re: Partial match in GIN - Mailing list pgsql-patches

From Alvaro Herrera
Subject Re: Partial match in GIN
Date
Msg-id 20080408194900.GQ9062@alvh.no-ip.org
Whole thread Raw
In response to Re: Partial match in GIN  (Heikki Linnakangas <heikki@enterprisedb.com>)
Responses Re: Partial match in GIN
List pgsql-patches
Heikki Linnakangas wrote:
> Alvaro Herrera wrote:
>> Heikki Linnakangas wrote:

>>> You could satisfy '%foo%' using a regular and a reverse B-tree index,
>>>  and a bitmap AND. Which is interestingly similar to the way you
>>> proposed  to use a TIDBitmap within GIN.
>>
>> Huh, can you?  I can see doing "col LIKE 'foo%' OR reverse(col) LIKE
>> reverse('%foo')" with two btree indexes, but not a true %foo% ...
>
> That should be AND, not OR..
>
> Hmm. It is the same as far as I can see. Am I missing something?

Well, LIKE %foo% is supposed to match foo unanchored, but with a btree
(or two btrees) you can only get 'foo' anchored to either end of the
string (or both).

--
Alvaro Herrera                                http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

pgsql-patches by date:

Previous
From: Gregory Stark
Date:
Subject: EXPLAIN progress info
Next
From: David Fetter
Date:
Subject: Fix \dT enum in psql