Re: LIKE on index not working

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: LIKE on index not working
Дата
Msg-id 10467.1090516238@sss.pgh.pa.us
обсуждение исходный текст
Ответ на LIKE on index not working  ("Chris Cox" <cjcox@optushome.com.au>)
Список pgsql-sql
"Chris Cox" <cjcox@optushome.com.au> writes:
> For some reason I just can't get this to use the index for the following
> query.  I'm using PostgreSQL 7.3.4.

It works for me in 7.3.6 (see below).  I'd guess that you are using a
non-LIKE-safe locale setting --- can you get LIKE to use indexes at
all?

regression=# create table fooey(f1 varchar);
CREATE TABLE
regression=# create index fooeyi on fooey(lower(f1));
CREATE INDEX
regression=# explain select * from fooey where lower(f1) = lower('z');                             QUERY PLAN
----------------------------------------------------------------------Index Scan using fooeyi on fooey
(cost=0.00..17.08rows=5 width=32)  Index Cond: (lower((f1)::text) = 'z'::text)
 
(2 rows)

regression=# explain select * from fooey where lower(f1) like lower('z');                             QUERY PLAN
----------------------------------------------------------------------Index Scan using fooeyi on fooey
(cost=0.00..17.08rows=5 width=32)  Index Cond: (lower((f1)::text) = 'z'::text)  Filter: (lower((f1)::text) ~~
'z'::text)
(3 rows)

        regards, tom lane


В списке pgsql-sql по дате отправления:

Предыдущее
От: Josh Berkus
Дата:
Сообщение: Re: surrogate key or not?
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Problem with transaction in functions and tempory tables