Re: SELECT from record-returning function causes function code to be executed multiple times - Mailing list pgsql-general

From David Johnston
Subject Re: SELECT from record-returning function causes function code to be executed multiple times
Date
Msg-id 1387145351920-5783497.post@n5.nabble.com
Whole thread Raw
In response to SELECT from record-returning function causes function code to be executed multiple times  (dbaston <dbaston@gmail.com>)
List pgsql-general
dbaston wrote
> I'm wondering if this is expected behavior?

Yes.

The proper way to handle this is by putting the SRF in the FROM clause.

If you must have it in the select clause you should do this:

WITH srf_call (
SELECT srf_function() AS srf_result
)
SELECT (srf_call.srf_result).* FROM srf_call;

Note that if you are using 9.3 you likely can make use of the new LATERAL
construct to leave the SRF call in the FROM clause while still pulling
parameter values from the same level in the query (which is the main reason
for moving the SRF to the select-list).

David J.




--
View this message in context:
http://postgresql.1045698.n5.nabble.com/SELECT-from-record-returning-function-causes-function-code-to-be-executed-multiple-times-tp5783495p5783497.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.


pgsql-general by date:

Previous
From: dbaston
Date:
Subject: SELECT from record-returning function causes function code to be executed multiple times
Next
From: Juan Pablo L
Date:
Subject: replacing expresion in plpgsql