Re: delta relations in AFTER triggers
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Robert Haas <robertmhaas@gmail.com>
Cc: Heikki Linnakangas <hlinnakangas@vmware.com>,
Kevin Grittner <kgrittn@ymail.com>,
Amit Khandekar <amit.khandekar@enterprisedb.com>,
David Fetter <david@fetter.org>, Alvaro Herrera <alvherre@2ndquadrant.com>,
Pg Hackers <pgsql-hackers@postgresql.org>
Date: 2014-09-23T17:51:58Z
Lists: pgsql-hackers
Robert Haas <robertmhaas@gmail.com> writes: > On Tue, Sep 23, 2014 at 12:46 PM, Heikki Linnakangas > <hlinnakangas@vmware.com> wrote: >> Now, how do we make the tuplestores work similarly? Here's what I think we >> should do: >> >> Add a new p_tableref_hook function pointer, similar to p_paramref_hook. >> Whenever the parser sees a RangeVar that it doesn't recognize (or actually, >> I think it should call it *before* resolving regular tables, but let's >> ignore that for now), it calls the p_tableref_hook. It can return a new >> RelationParam node (similar to regular Param), which contains a numeric ID >> for the table/tuplestore, as well as its tuple descriptor. >> >> For the execution phase, add a new array of Tuplestorestates to >> ParamListInfo. Similar to the existing array of ParamExternalDatas. > I haven't been following this issue closely, but this sounds like a > really nice design. I'm on board with the parser hooks part of that. I don't especially agree with the idea of a new sub-structure for ParamListInfo: if you do that you will need a whole bunch of new boilerplate infrastructure to allocate, copy, and generally manage that structure, for darn little gain. What I'd suggest is just saying that some Params might have type INTERNAL with Datum values that are pointers to tuplestores; then all you need to do is remember which Param number has been assigned to the particular tuplestore you want. There is already precedent for that in the recursive CTE code, IIRC. regards, tom lane
Commits
-
Don't permit transition tables with TRUNCATE triggers.
- 29fd3d9da0ff 10.0 landed
-
Pass EXEC_FLAG_REWIND when initializing a tuplestore scan.
- 304007d9f1f6 10.0 landed
-
Faster expression evaluation and targetlist projection.
- b8d7f053c5c2 10.0 cited
-
Remove obsoleted code relating to targetlist SRF evaluation.
- ea15e18677fc 10.0 cited
-
Implement syntax for transition tables in AFTER triggers.
- 8c48375e5f43 10.0 cited