mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Remove es_result_relation_info from EState.
Maintaining 'es_result_relation_info' correctly at all times has become cumbersome, especially with partitioning where each partition gets its own result relation info. Having to set and reset it across arbitrary operations has caused bugs in the past. This changes all the places that used 'es_result_relation_info', to receive the currently active ResultRelInfo via function parameters instead. Author: Amit Langote Discussion: https://www.postgresql.org/message-id/CA%2BHiwqGEmiib8FLiHMhKB%2BCH5dRgHSLc5N5wnvc4kym%2BZYpQEQ%40mail.gmail.com
This commit is contained in:
@ -827,9 +827,6 @@ InitPlan(QueryDesc *queryDesc, int eflags)
|
||||
|
||||
estate->es_plannedstmt = plannedstmt;
|
||||
|
||||
/* es_result_relation_info is NULL except when within ModifyTable */
|
||||
estate->es_result_relation_info = NULL;
|
||||
|
||||
/*
|
||||
* Next, build the ExecRowMark array from the PlanRowMark(s), if any.
|
||||
*/
|
||||
@ -2694,7 +2691,6 @@ EvalPlanQualStart(EPQState *epqstate, Plan *planTree)
|
||||
* subplans themselves are initialized.
|
||||
*/
|
||||
parentestate->es_result_relations = NULL;
|
||||
/* es_result_relation_info must NOT be copied */
|
||||
/* es_trig_target_relations must NOT be copied */
|
||||
rcestate->es_top_eflags = parentestate->es_top_eflags;
|
||||
rcestate->es_instrument = parentestate->es_instrument;
|
||||
|
Reference in New Issue
Block a user