Re: [HACKERS] 'LIKE' enhancement suggestion

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] 'LIKE' enhancement suggestion
Дата
Msg-id 22975.952475530@sss.pgh.pa.us
обсуждение исходный текст
Ответ на 'LIKE' enhancement suggestion  (JB <jimbag@kw.igs.net>)
Список pgsql-hackers
JB <jimbag@kw.igs.net> writes:
> SELECT * FROM info WHERE street_name LIKE 'MAIN%';

> ...this would take about 20 secs to complete. Because the wildness only
> happens at the end of the search string, I changed the query to...

> SELECT * FROM info WHERE substring( street_name from 1 to 4 ) = 'MAIN';

> ...this takes under 2 secs.

This makes no sense to me at all.  The latter query should be far
slower, because AFAIK there is no optimization for it, whereas there is
an optimization for "foo LIKE 'bar%'".

What version are you running, and what plan does EXPLAIN show for
each of these queries?
        regards, tom lane


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] pg_pwd trigger to be removed
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [HACKERS] DROP TABLE inside a transaction block