Re: Creating an index-type for LIKE '%value%' - Mailing list pgsql-general

From Oleg Bartunov
Subject Re: Creating an index-type for LIKE '%value%'
Date
Msg-id Pine.GSO.4.62.0502081708190.2906@ra.sai.msu.su
Whole thread Raw
In response to Re: Creating an index-type for LIKE '%value%'  (Larry Rosenman <ler@lerctr.org>)
Responses Re: Creating an index-type for LIKE '%value%'
List pgsql-general
On Tue, 8 Feb 2005, Larry Rosenman wrote:

> On Tue, 8 Feb 2005, Oleg Bartunov wrote:
>
>> On Mon, 7 Feb 2005, Larry Rosenman wrote:
>>
>>> Oleg Bartunov wrote:
>>
>> Larry, I pointed you to pg_trgm module mostly following Martijn's
>> suggestions. Now, I see you need another our module - ltree,
>> see http://www.sai.msu.su/~megera/postgres/gist/ltree/
>> for details.
>
> I maybe dense, but could you give me an example?

test=# \d tt
      Table "public.tt"
  Column | Type  | Modifiers
--------+-------+-----------
  domain | ltree |
Indexes:
     "ltree_idx" gist ("domain")

test=# select * from tt where domain ~ '*.ru'::lquery;
    domain
-------------
  astronet.ru
  mail.ru
  pgsql.ru
(3 rows)


>
> I'm not seeing it for some reason :).
>
> Thanks,
> LER
>
>

     Regards,
         Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83

pgsql-general by date:

Previous
From: Martijn van Oosterhout
Date:
Subject: Re: Safely Killing Backends (Was: Applications that leak connections)
Next
From: "Ian Harding"
Date:
Subject: Re: indexing just a part of a string