Re: Changed SRF in targetlist handling
Robert Haas <robertmhaas@gmail.com>
From: Robert Haas <robertmhaas@gmail.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Merlin Moncure <mmoncure@gmail.com>, David Fetter <david@fetter.org>, Andres Freund <andres@anarazel.de>,
PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2016-06-06T18:15:56Z
Lists: pgsql-hackers
On Mon, Jun 6, 2016 at 11:50 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote: > Robert Haas <robertmhaas@gmail.com> writes: >> On Mon, May 23, 2016 at 4:15 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote: >>> 2. Rewrite into LATERAL ROWS FROM (srf1(), srf2(), ...). This would >>> have the same behavior as before if the SRFs all return the same number >>> of rows, and otherwise would behave differently. > >> I thought the idea was to rewrite it as LATERAL ROWS FROM (srf1()), >> LATERAL ROWS FROM (srf2()), ... > > No, because then you get the cross-product of multiple SRFs, not the > run-in-lockstep behavior. Oh. I assumed that was the expected behavior. But, ah, what do I know? >> The rewrite you propose here seems to NULL-pad rows after the first >> SRF is exhausted: > > Yes. That's why I said it's not compatible if the SRFs don't all return > the same number of rows. It seems like a reasonable definition to me > though, certainly much more reasonable than the current run-until-LCM > behavior. I can't argue with that. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company
Commits
-
Remove obsoleted code relating to targetlist SRF evaluation.
- ea15e18677fc 10.0 landed
-
Doc: improve documentation of new SRF-in-tlist behavior.
- f13a1277aa2d 10.0 landed
-
Move targetlist SRF handling from expression evaluation to new executor node.
- 69f4b9c85f16 10.0 landed
-
Don't split up SRFs when choosing to postpone SELECT output expressions.
- d543170f2fdd 9.6.0 cited