Re: Bug? Function with side effects not evaluated in CTE

From: BladeOfLight16 <bladeoflight16(at)gmail(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Bug? Function with side effects not evaluated in CTE
Date: 2013-10-21 22:52:42
Message-ID: CA+=1U=WS5Mc12VaC-U8cfSP2FeZXp1q0Af1UoKFrHbiQdEUspQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I've only skimmed this thread, but clearly, this is why using functions
with side effects in the middle of complex queries is a bad idea. =)
Something like SELECT func_with_side_effect(1); is probably fine, but
beyond that, put the function in the middle of a DO block or something and
actually code what you want to happen.

In terms of "expected" or "surprising" behavior, I don't think you can say
ANY behavior could be expected. SQL is designed to be declarative. When it
comes to retrieval (which is the issue originally raised since this
involves a SELECT before the modification), you tell it what you want, and
some engine figures out the best way to retrieve it. The engine is allowed
to make whatever optimizations it chooses as long as the result set is
correct. So if you really want to modify something, be explicit and don't
drop a function with side effects in the middle of a complex query like
this. God only knows what the engine will do with that.

In my opinion, the simplest and most correct way to handle this is to
document that there are no guarantees about what will happen with volatile
functions in these strange cases. PostgreSQL shouldn't have to make
guarantees about whether functions are evaluated in CTEs or what have you;
it should have the freedom to optimize those things away or not.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message John R Pierce 2013-10-21 23:02:51 Re: Bug? Function with side effects not evaluated in CTE
Previous Message Rowan Collins 2013-10-21 22:10:59 Re: Bug? Function with side effects not evaluated in CTE