Re: Optimize expresiions.

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: Optimize expresiions.
Дата
Msg-id 45A620AE.6030905@archonet.com
обсуждение исходный текст
Ответ на Optimize expresiions.  (han.holl@informationslogik.nl)
Ответы Re: Optimize expresiions.  (han.holl@informationslogik.nl)
Список pgsql-general
han.holl@informationslogik.nl wrote:
> Now the query:
> select item from aview where exp > 0 and cheap > 0;
> will lead to a sequential scan on atable with filter:
> very_expensive_function(item) > 0 and cheap_function(item) > 0
>
> The query would run much faster with the filter reordered.
> Is there a way to tell the planner/optimizer that certain functions are more
> expensive than others, and should be postponed in lazy evaluation ?
> Or is there a hook in the system that would allow me too look at and maybe
> reorder expressions before they are executed ?

Not really. Perhaps look into using a functional/expressional index and
see if that does the job for you.

http://www.postgresql.org/docs/8.2/static/indexes-expressional.html
http://www.postgresql.org/docs/8.2/static/sql-createfunction.html

--
   Richard Huxton
   Archonet Ltd

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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: PG compilation
Следующее
От: "Alexander Farber"
Дата:
Сообщение: Re: Knowing the length(convert(username using windows_1251_to_utf8))