Re: case-insensitive Index - Mailing list pgsql-novice

From Tom Lane
Subject Re: case-insensitive Index
Date
Msg-id 26019.1153320838@sss.pgh.pa.us
Whole thread Raw
In response to case-insensitive Index  ("Verena Ruff" <lists@triosolutions.at>)
Responses Re: case-insensitive Index
List pgsql-novice
"Verena Ruff" <lists@triosolutions.at> writes:
> EXPLAIN SELECT * FROM kundepersonhc WHERE UPPER(pers_nachname) LIKE
> UPPER('me%');
> says that a seq scan is done.

> I used this statement to define the index:
> CREATE INDEX kundepersonhc_upper_pers_nachname ON kundepersonhc
> (UPPER(pers_nachname));

If your locale is not C then you'd need to specify a special index
opclass while creating the index in order to let it support LIKE
queries, eg

CREATE INDEX kundepersonhc_upper_pers_nachname ON kundepersonhc
(UPPER(pers_nachname) text_pattern_ops);

http://www.postgresql.org/docs/8.1/static/indexes-opclass.html

            regards, tom lane

pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: Query optimization / automatic re-ordering of tables
Next
From: "Verena Ruff"
Date:
Subject: Re: case-insensitive Index