Re: String matching

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Ivan Voras <ivoras(at)fer(dot)hr>
Cc: PFC <lists(at)boutiquenumerique(dot)com>, pgsql-performance(at)postgresql(dot)org
Subject: Re: String matching
Date: 2005-02-14 22:12:49
Message-ID: 20050214141029.W9640@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


On Mon, 14 Feb 2005, Ivan Voras wrote:

> Stephan Szabo wrote:
>
> > You can also create an index using a <typename>_pattern_ops operator
> > class which should be usable even with other collations.
>
> Could you give me an example for this, or point me to the relevant
> documentation?

Basically, you could have something like:

create table test_table(a text);
create index test_index on test_table(a text_pattern_ops);

------------------------------------------------------------------

http://www.postgresql.org/docs/8.0/interactive/indexes-opclass.html

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Ivan Voras 2005-02-14 22:29:15 Re: String matching
Previous Message Ivan Voras 2005-02-14 20:45:00 Re: String matching