Re: fill_extraUpdatedCols is done in completely the wrong place - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: fill_extraUpdatedCols is done in completely the wrong place
Date
Msg-id 989410e6-1da7-d763-e8cf-f4a3d999db94@2ndquadrant.com
Whole thread Raw
In response to fill_extraUpdatedCols is done in completely the wrong place  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: fill_extraUpdatedCols is done in completely the wrong place
List pgsql-hackers
On 2020-05-08 21:05, Tom Lane wrote:
> I happened to notice $subject while working on the release notes.
> AFAICS, it is 100% inappropriate for the parser to compute the
> set of generated columns affected by an UPDATE, because that set
> could change before execution.  It would be really easy to break
> this for an UPDATE in a stored rule, for example.

Do you have a specific situation in mind?  How would a rule change the 
set of columns updated by a query?  Something involving CTEs?  Having a 
test case would be good.

> I think that that processing should be done by the planner, instead.
> I don't object too much to keeping the data in RTEs ... but there had
> better be a bold annotation that the set is not valid till after
> planning.
> 
> An alternative solution is to keep the set in some executor data structure
> and compute it during executor startup; perhaps near to where the
> expressions are prepared for execution, so as to save extra stringToNode
> calls.

Yeah, really only the executor ended up needing this, so perhaps it 
should be handled in the executor.

-- 
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: factorial function/phase out postfix operators?
Next
From: Vik Fearing
Date:
Subject: Re: factorial function/phase out postfix operators?