Re: [PERFORM] optimizing immutable vs. stable function calls? - Mailing list pgsql-performance

From Karl Czajkowski
Subject Re: [PERFORM] optimizing immutable vs. stable function calls?
Date
Msg-id 20170118230646.GD23081@moraine.isi.edu
Whole thread Raw
In response to Re: [PERFORM] optimizing immutable vs. stable function calls?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-performance
On Jan 18, Tom Lane modulated:
> "The same as IMMUTABLE" would be to reduce the function to a constant at
> plan time, which would be the wrong thing.  It would be valid to execute
> it only once at query start, but there's no built-in mechanism for that.
>

That's what I was afraid of... right, we'd like for it to partially
evaluate these and then finish the plan.

Is there a correctness hazard with pretending our function is
IMMUTABLE, even though we will change the underlying config parameter
in the same connection?  It would be very bad if we changed our
parameter to reflect a different web client identity context, but then
somehow got cached plans based on the previous setting...

> But you could force it by putting it in a sub-SELECT, that is if you
> don't like the performance of
>
>       SELECT ... slow_stable_function() ...
>
> try this:
>
>       SELECT ... (SELECT slow_stable_function()) ...
>

Ha, you might recall a while back I was having problems with
round-tripping our RLS policies because I had tried such sub-selects
which return arrays and the internal format lost the casts needed to
get the correct parse when reloading a dump... :-)


karl



pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: [PERFORM] optimizing immutable vs. stable function calls?
Next
From: "David G. Johnston"
Date:
Subject: Re: [PERFORM] optimizing immutable vs. stable function calls?