diff options
author | Noah Misch | 2013-06-26 23:51:56 +0000 |
---|---|---|
committer | Noah Misch | 2013-06-27 00:33:40 +0000 |
commit | 1f3fbced6502dbe0427331dfa47fed0f3c50b955 (patch) | |
tree | efdfa553082242ab3951a3d121633767643c3e33 /doc/src | |
parent | 5734eb2c92a5efd665186c52b8eebdf2880868b5 (diff) |
Document effect of constant folding on CASE.
Back-patch to all supported versions.
Laurenz Albe
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 4309cbf520d..14a1c770a11 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -10060,6 +10060,16 @@ SELECT a, SELECT ... WHERE CASE WHEN x <> 0 THEN y/x > 1.5 ELSE false END; </programlisting> </para> + + <note> + <para> + As described in <xref linkend="xfunc-volatility">, functions and + operators marked <literal>IMMUTABLE</literal> can be evaluated when + the query is planned rather than when it is executed. This means + that constant parts of a subexpression that is not evaluated during + query execution might still be evaluated during query planning. + </para> + </note> </sect2> <sect2 id="functions-coalesce-nvl-ifnull"> |