Re: CASE WHEN idiomatic for functions with side-effect? - Mailing list pgsql-general

From Tom Lane
Subject Re: CASE WHEN idiomatic for functions with side-effect?
Date
Msg-id 1126920.1610462907@sss.pgh.pa.us
Whole thread Raw
In response to CASE WHEN idiomatic for functions with side-effect?  ("Joel Jacobson" <joel@compiler.org>)
Responses Re: CASE WHEN idiomatic for functions with side-effect?
List pgsql-general
"Joel Jacobson" <joel@compiler.org> writes:
> Is it idiomatic and safe to use
> SELECT
>   CASE boolean_expression WHEN TRUE THEN function_with_side_effects() END
> in a query to ensure the function_with_side_effects() is only
> execute if boolean_expression is true?

As long as function_with_side_effects() is properly marked volatile,
it's safe (whether it's idiomatic is in the eye of the beholder).

The issue with the divide-by-zero example is that the division operator
is marked immutable, so if the planner sees that it has constant arguments
it will try to simplify-on-sight, even within a CASE expression.

            regards, tom lane



pgsql-general by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: CASE WHEN idiomatic for functions with side-effect?
Next
From: Deepti Sharma S
Date:
Subject: RE: Compatible compiler with Postgresql C++