Re: Invalid optimization of VOLATILE function in WHERE clause?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Invalid optimization of VOLATILE function in WHERE clause?
Дата
Msg-id 25382.1348065036@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Invalid optimization of VOLATILE function in WHERE clause?  (Florian.Schoppmann@emc.com (Florian Schoppmann))
Ответы Re: Invalid optimization of VOLATILE function in WHERE clause?
Re: Invalid optimization of VOLATILE function in WHERE clause?
Список pgsql-hackers
Florian.Schoppmann@emc.com (Florian Schoppmann) writes:
> In PostgreSQL 9.1 and 9.2 (possibly also in earlier versions), the query

> --8<--
> WITH source AS (
>     SELECT i FROM generate_series(1,10) AS i
> )
> SELECT
>     i
> FROM
>     source, (
>         SELECT
>             count(*) AS _n
>         FROM source
>     ) AS _stats
> WHERE
>     random() < 5::DOUBLE PRECISION/_n;
> -->8--

[ doesn't do what you think it should ]

I can't get excited about this.  Any time you put a volatile function
into WHERE, you're playing with fire.  The docs warn against it:
http://www.postgresql.org/docs/9.2/static/sql-expressions.html#SYNTAX-EXPRESS-EVAL

To do what you want, I'd suggest wrapping the join into a sub-select
with an "OFFSET 0" clause, which will serve as an optimization fence
that prevents the random() call from being pushed down.
        regards, tom lane



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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: ToDo: allow to get a number of processed rows by COPY statement
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: Invalid optimization of VOLATILE function in WHERE clause?