Re: Values list-of-targetlists patch for comments (was Re: [HACKERS] 8.2 features?)
От | Tom Lane |
---|---|
Тема | Re: Values list-of-targetlists patch for comments (was Re: [HACKERS] 8.2 features?) |
Дата | |
Msg-id | 11495.1153757531@sss.pgh.pa.us обсуждение исходный текст |
Ответ на | Values list-of-targetlists patch for comments (was Re: [HACKERS] 8.2 features?) (Joe Conway <mail@joeconway.com>) |
Ответы |
Re: Values list-of-targetlists patch for comments (was Re:
|
Список | pgsql-patches |
Joe Conway <mail@joeconway.com> writes: > Tom Lane wrote: >> There are basically two ways you could go about this: >> 1. Make a new jointree leaf node type to represent a VALUES construct, >> and dangle the list of lists of expressions off that. >> 2. Make a new RangeTblEntry type to represent a VALUES construct, and >> just put a RangeTblRef to it into the jointree. The expressions >> dangle off the RangeTblEntry. You seem to have done *both*, which is certainly not what I had in mind. I'd drop the RangeTblEntry changes, I think. Shoving all the tuples into a tuplestore is not doing anything for you from a performance point of view. I was thinking more of evaluating the targetlists on-the-fly. Basically what I foresaw as the executor mechanism was something like a Result node, except with a list of targetlists instead of just one, and part of its runtime state would be an index saying which one to evaluate next. (The update logic for the index would be just like Append's logic for which subplan to eval next.) Result as it currently stands is a pretty queer beast because it can have a child plan or not. I'm tempted to suggest splitting it into two node types, perhaps call the one with a child "Filter" and reserve the name "Result" for the one with no child. The reason for doing this in this context is that we could just make the no-child case be multi-targetlist-capable (rather than having separate nearly identical node types with single and multi tlists). AFAICS multi tlists don't make any sense for the filter-a-child-plan scenario, so that's why I want to push that case off to a different node type. regards, tom lane
В списке pgsql-patches по дате отправления: