case-insensitive Index - Mailing list pgsql-novice

From Verena Ruff
Subject case-insensitive Index
Date
Msg-id 19682.86.59.55.246.1153314443.squirrel@v2830.vanager.de
Whole thread Raw
Responses Re: case-insensitive Index
List pgsql-novice
Hello,

I'm not sure if I use the index for a case-insensitive search the right
way. It is a table with about 45000 records, pers_id is the primary key,
pers_nachname is a character varying which should have an case-insensitive
index.

EXPLAIN SELECT * FROM kundepersonhc WHERE pers_id=42612;
says that the index for the primary key is used

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));

What did you wrong here?

Regards,
Verena


pgsql-novice by date:

Previous
From: "Verena Ruff"
Date:
Subject: Query optimization / automatic re-ordering of tables
Next
From: "Glenn"
Date:
Subject: wild cards in pg_hba.conf