diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-01-12 20:47:09 -0500 | 
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-01-12 20:47:09 -0500 | 
| commit | fed8dcdb84d255088d22efa3156a193f3399e792 (patch) | |
| tree | 8262474db57695b73d2fcdb0975a5f89f5573307 /src/include/executor | |
| parent | a1ed4cf6ca6ee2115d9f618ed7930a97842042a8 (diff) | |
Fix PlanRowMark/ExecRowMark structures to handle inheritance correctly.
In an inherited UPDATE/DELETE, each target table has its own subplan,
because it might have a column set different from other targets.  This
means that the resjunk columns we add to support EvalPlanQual might be
at different physical column numbers in each subplan.  The EvalPlanQual
rewrite I did for 9.0 failed to account for this, resulting in possible
misbehavior or even crashes during concurrent updates to the same row,
as seen in a recent report from Gordon Shannon.  Revise the data structure
so that we track resjunk column numbers separately for each subplan.
I also chose to move responsibility for identifying the physical column
numbers back to executor startup, instead of assuming that numbers derived
during preprocess_targetlist would stay valid throughout subsequent
massaging of the plan.  That's a bit slower, so we might want to consider
undoing it someday; but it would complicate the patch considerably and
didn't seem justifiable in a bug fix that has to be back-patched to 9.0.
Diffstat (limited to 'src/include/executor')
| -rw-r--r-- | src/include/executor/executor.h | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index b2424a0d087..13b6aa57bea 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -138,6 +138,8 @@ extern JunkFilter *ExecInitJunkFilterConversion(List *targetList,  							 TupleTableSlot *slot);  extern AttrNumber ExecFindJunkAttribute(JunkFilter *junkfilter,  					  const char *attrName); +extern AttrNumber ExecFindJunkAttributeInTlist(List *targetlist, +					  const char *attrName);  extern Datum ExecGetJunkAttribute(TupleTableSlot *slot, AttrNumber attno,  					 bool *isNull);  extern TupleTableSlot *ExecFilterJunk(JunkFilter *junkfilter, @@ -166,15 +168,17 @@ extern ResultRelInfo *ExecGetTriggerResultRel(EState *estate, Oid relid);  extern bool ExecContextForcesOids(PlanState *planstate, bool *hasoids);  extern void ExecConstraints(ResultRelInfo *resultRelInfo,  				TupleTableSlot *slot, EState *estate); +extern ExecRowMark *ExecFindRowMark(EState *estate, Index rti); +extern ExecAuxRowMark *ExecBuildAuxRowMark(ExecRowMark *erm, List *targetlist);  extern TupleTableSlot *EvalPlanQual(EState *estate, EPQState *epqstate,  			 Relation relation, Index rti,  			 ItemPointer tid, TransactionId priorXmax);  extern HeapTuple EvalPlanQualFetch(EState *estate, Relation relation,  				  int lockmode, ItemPointer tid, TransactionId priorXmax);  extern void EvalPlanQualInit(EPQState *epqstate, EState *estate, -				 Plan *subplan, int epqParam); -extern void EvalPlanQualSetPlan(EPQState *epqstate, Plan *subplan); -extern void EvalPlanQualAddRowMark(EPQState *epqstate, ExecRowMark *erm); +				 Plan *subplan, List *auxrowmarks, int epqParam); +extern void EvalPlanQualSetPlan(EPQState *epqstate, +								Plan *subplan, List *auxrowmarks);  extern void EvalPlanQualSetTuple(EPQState *epqstate, Index rti,  					 HeapTuple tuple);  extern HeapTuple EvalPlanQualGetTuple(EPQState *epqstate, Index rti); | 
