Fix dangling-pointer problem in before-row update trigger processing.
ExecUpdate checked for whether ExecBRUpdateTriggers had returned a new tuple value by seeing if the returned tuple was pointer-equal to the old one. But the "old one" was in estate->es_junkFilter's result slot, which would be scribbled on if we had done an EvalPlanQual update in response to a concurrent update of the target tuple; therefore we were comparing a dangling pointer to a live one. Given the right set of circumstances we could get a false match, resulting in not forcing the tuple to be stored in the slot we thought it was stored in. In the case reported by Maxim Boguk in bug #5798, this led to "cannot extract system attribute from virtual tuple" failures when trying to do "RETURNING ctid". I believe there is a very-low-probability chance of more serious errors, such as generating incorrect index entries based on the original rather than the trigger-modified version of the row. In HEAD, change all of ExecBRInsertTriggers, ExecIRInsertTriggers, ExecBRUpdateTriggers, and ExecIRUpdateTriggers so that they continue to have similar APIs. In the back branches I just changed ExecBRUpdateTriggers, since there is no bug in the ExecBRInsertTriggers case.
This commit is contained in:
parent
fee7802770
commit
a210be7720
@ -1836,7 +1836,7 @@ CopyFrom(CopyState cstate)
|
|||||||
ResultRelInfo *resultRelInfo;
|
ResultRelInfo *resultRelInfo;
|
||||||
EState *estate = CreateExecutorState(); /* for ExecConstraints() */
|
EState *estate = CreateExecutorState(); /* for ExecConstraints() */
|
||||||
ExprContext *econtext;
|
ExprContext *econtext;
|
||||||
TupleTableSlot *slot;
|
TupleTableSlot *myslot;
|
||||||
MemoryContext oldcontext = CurrentMemoryContext;
|
MemoryContext oldcontext = CurrentMemoryContext;
|
||||||
ErrorContextCallback errcontext;
|
ErrorContextCallback errcontext;
|
||||||
CommandId mycid = GetCurrentCommandId(true);
|
CommandId mycid = GetCurrentCommandId(true);
|
||||||
@ -1932,8 +1932,10 @@ CopyFrom(CopyState cstate)
|
|||||||
estate->es_result_relation_info = resultRelInfo;
|
estate->es_result_relation_info = resultRelInfo;
|
||||||
|
|
||||||
/* Set up a tuple slot too */
|
/* Set up a tuple slot too */
|
||||||
slot = ExecInitExtraTupleSlot(estate);
|
myslot = ExecInitExtraTupleSlot(estate);
|
||||||
ExecSetSlotDescriptor(slot, tupDesc);
|
ExecSetSlotDescriptor(myslot, tupDesc);
|
||||||
|
/* Triggers might need a slot as well */
|
||||||
|
estate->es_trig_tuple_slot = ExecInitExtraTupleSlot(estate);
|
||||||
|
|
||||||
/* Prepare to catch AFTER triggers. */
|
/* Prepare to catch AFTER triggers. */
|
||||||
AfterTriggerBeginQuery();
|
AfterTriggerBeginQuery();
|
||||||
@ -1960,6 +1962,7 @@ CopyFrom(CopyState cstate)
|
|||||||
|
|
||||||
for (;;)
|
for (;;)
|
||||||
{
|
{
|
||||||
|
TupleTableSlot *slot;
|
||||||
bool skip_tuple;
|
bool skip_tuple;
|
||||||
Oid loaded_oid = InvalidOid;
|
Oid loaded_oid = InvalidOid;
|
||||||
|
|
||||||
@ -1983,32 +1986,28 @@ CopyFrom(CopyState cstate)
|
|||||||
/* Triggers and stuff need to be invoked in query context. */
|
/* Triggers and stuff need to be invoked in query context. */
|
||||||
MemoryContextSwitchTo(oldcontext);
|
MemoryContextSwitchTo(oldcontext);
|
||||||
|
|
||||||
|
/* Place tuple in tuple slot --- but slot shouldn't free it */
|
||||||
|
slot = myslot;
|
||||||
|
ExecStoreTuple(tuple, slot, InvalidBuffer, false);
|
||||||
|
|
||||||
skip_tuple = false;
|
skip_tuple = false;
|
||||||
|
|
||||||
/* BEFORE ROW INSERT Triggers */
|
/* BEFORE ROW INSERT Triggers */
|
||||||
if (resultRelInfo->ri_TrigDesc &&
|
if (resultRelInfo->ri_TrigDesc &&
|
||||||
resultRelInfo->ri_TrigDesc->trig_insert_before_row)
|
resultRelInfo->ri_TrigDesc->trig_insert_before_row)
|
||||||
{
|
{
|
||||||
HeapTuple newtuple;
|
slot = ExecBRInsertTriggers(estate, resultRelInfo, slot);
|
||||||
|
|
||||||
newtuple = ExecBRInsertTriggers(estate, resultRelInfo, tuple);
|
if (slot == NULL) /* "do nothing" */
|
||||||
|
|
||||||
if (newtuple == NULL) /* "do nothing" */
|
|
||||||
skip_tuple = true;
|
skip_tuple = true;
|
||||||
else if (newtuple != tuple) /* modified by Trigger(s) */
|
else /* trigger might have changed tuple */
|
||||||
{
|
tuple = ExecMaterializeSlot(slot);
|
||||||
heap_freetuple(tuple);
|
|
||||||
tuple = newtuple;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!skip_tuple)
|
if (!skip_tuple)
|
||||||
{
|
{
|
||||||
List *recheckIndexes = NIL;
|
List *recheckIndexes = NIL;
|
||||||
|
|
||||||
/* Place tuple in tuple slot */
|
|
||||||
ExecStoreTuple(tuple, slot, InvalidBuffer, false);
|
|
||||||
|
|
||||||
/* Check the constraints of the tuple */
|
/* Check the constraints of the tuple */
|
||||||
if (cstate->rel->rd_att->constr)
|
if (cstate->rel->rd_att->constr)
|
||||||
ExecConstraints(resultRelInfo, slot, estate);
|
ExecConstraints(resultRelInfo, slot, estate);
|
||||||
|
@ -1909,12 +1909,13 @@ ExecASInsertTriggers(EState *estate, ResultRelInfo *relinfo)
|
|||||||
false, NULL, NULL, NIL, NULL);
|
false, NULL, NULL, NIL, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
HeapTuple
|
TupleTableSlot *
|
||||||
ExecBRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
ExecBRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
||||||
HeapTuple trigtuple)
|
TupleTableSlot *slot)
|
||||||
{
|
{
|
||||||
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
||||||
HeapTuple newtuple = trigtuple;
|
HeapTuple slottuple = ExecMaterializeSlot(slot);
|
||||||
|
HeapTuple newtuple = slottuple;
|
||||||
HeapTuple oldtuple;
|
HeapTuple oldtuple;
|
||||||
TriggerData LocTriggerData;
|
TriggerData LocTriggerData;
|
||||||
int i;
|
int i;
|
||||||
@ -1947,12 +1948,29 @@ ExecBRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
|||||||
relinfo->ri_TrigFunctions,
|
relinfo->ri_TrigFunctions,
|
||||||
relinfo->ri_TrigInstrument,
|
relinfo->ri_TrigInstrument,
|
||||||
GetPerTupleMemoryContext(estate));
|
GetPerTupleMemoryContext(estate));
|
||||||
if (oldtuple != newtuple && oldtuple != trigtuple)
|
if (oldtuple != newtuple && oldtuple != slottuple)
|
||||||
heap_freetuple(oldtuple);
|
heap_freetuple(oldtuple);
|
||||||
if (newtuple == NULL)
|
if (newtuple == NULL)
|
||||||
break;
|
return NULL; /* "do nothing" */
|
||||||
}
|
}
|
||||||
return newtuple;
|
|
||||||
|
if (newtuple != slottuple)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Return the modified tuple using the es_trig_tuple_slot. We assume
|
||||||
|
* the tuple was allocated in per-tuple memory context, and therefore
|
||||||
|
* will go away by itself. The tuple table slot should not try to
|
||||||
|
* clear it.
|
||||||
|
*/
|
||||||
|
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
||||||
|
TupleDesc tupdesc = RelationGetDescr(relinfo->ri_RelationDesc);
|
||||||
|
|
||||||
|
if (newslot->tts_tupleDescriptor != tupdesc)
|
||||||
|
ExecSetSlotDescriptor(newslot, tupdesc);
|
||||||
|
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
||||||
|
slot = newslot;
|
||||||
|
}
|
||||||
|
return slot;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -1966,12 +1984,13 @@ ExecARInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
|||||||
true, NULL, trigtuple, recheckIndexes, NULL);
|
true, NULL, trigtuple, recheckIndexes, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
HeapTuple
|
TupleTableSlot *
|
||||||
ExecIRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
ExecIRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
||||||
HeapTuple trigtuple)
|
TupleTableSlot *slot)
|
||||||
{
|
{
|
||||||
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
||||||
HeapTuple newtuple = trigtuple;
|
HeapTuple slottuple = ExecMaterializeSlot(slot);
|
||||||
|
HeapTuple newtuple = slottuple;
|
||||||
HeapTuple oldtuple;
|
HeapTuple oldtuple;
|
||||||
TriggerData LocTriggerData;
|
TriggerData LocTriggerData;
|
||||||
int i;
|
int i;
|
||||||
@ -2004,12 +2023,29 @@ ExecIRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
|
|||||||
relinfo->ri_TrigFunctions,
|
relinfo->ri_TrigFunctions,
|
||||||
relinfo->ri_TrigInstrument,
|
relinfo->ri_TrigInstrument,
|
||||||
GetPerTupleMemoryContext(estate));
|
GetPerTupleMemoryContext(estate));
|
||||||
if (oldtuple != newtuple && oldtuple != trigtuple)
|
if (oldtuple != newtuple && oldtuple != slottuple)
|
||||||
heap_freetuple(oldtuple);
|
heap_freetuple(oldtuple);
|
||||||
if (newtuple == NULL)
|
if (newtuple == NULL)
|
||||||
break;
|
return NULL; /* "do nothing" */
|
||||||
}
|
}
|
||||||
return newtuple;
|
|
||||||
|
if (newtuple != slottuple)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Return the modified tuple using the es_trig_tuple_slot. We assume
|
||||||
|
* the tuple was allocated in per-tuple memory context, and therefore
|
||||||
|
* will go away by itself. The tuple table slot should not try to
|
||||||
|
* clear it.
|
||||||
|
*/
|
||||||
|
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
||||||
|
TupleDesc tupdesc = RelationGetDescr(relinfo->ri_RelationDesc);
|
||||||
|
|
||||||
|
if (newslot->tts_tupleDescriptor != tupdesc)
|
||||||
|
ExecSetSlotDescriptor(newslot, tupdesc);
|
||||||
|
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
||||||
|
slot = newslot;
|
||||||
|
}
|
||||||
|
return slot;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -2257,32 +2293,44 @@ ExecASUpdateTriggers(EState *estate, ResultRelInfo *relinfo)
|
|||||||
GetModifiedColumns(relinfo, estate));
|
GetModifiedColumns(relinfo, estate));
|
||||||
}
|
}
|
||||||
|
|
||||||
HeapTuple
|
TupleTableSlot *
|
||||||
ExecBRUpdateTriggers(EState *estate, EPQState *epqstate,
|
ExecBRUpdateTriggers(EState *estate, EPQState *epqstate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
ItemPointer tupleid, HeapTuple newtuple)
|
ItemPointer tupleid, TupleTableSlot *slot)
|
||||||
{
|
{
|
||||||
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
||||||
|
HeapTuple slottuple = ExecMaterializeSlot(slot);
|
||||||
|
HeapTuple newtuple = slottuple;
|
||||||
TriggerData LocTriggerData;
|
TriggerData LocTriggerData;
|
||||||
HeapTuple trigtuple;
|
HeapTuple trigtuple;
|
||||||
HeapTuple oldtuple;
|
HeapTuple oldtuple;
|
||||||
HeapTuple intuple = newtuple;
|
|
||||||
TupleTableSlot *newSlot;
|
TupleTableSlot *newSlot;
|
||||||
int i;
|
int i;
|
||||||
Bitmapset *modifiedCols;
|
Bitmapset *modifiedCols;
|
||||||
|
|
||||||
|
/* get a copy of the on-disk tuple we are planning to update */
|
||||||
trigtuple = GetTupleForTrigger(estate, epqstate, relinfo, tupleid,
|
trigtuple = GetTupleForTrigger(estate, epqstate, relinfo, tupleid,
|
||||||
&newSlot);
|
&newSlot);
|
||||||
if (trigtuple == NULL)
|
if (trigtuple == NULL)
|
||||||
return NULL;
|
return NULL; /* cancel the update action */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* In READ COMMITTED isolation level it's possible that newtuple was
|
* In READ COMMITTED isolation level it's possible that target tuple was
|
||||||
* changed due to concurrent update. In that case we have a raw subplan
|
* changed due to concurrent update. In that case we have a raw subplan
|
||||||
* output tuple and need to run it through the junk filter.
|
* output tuple in newSlot, and need to run it through the junk filter to
|
||||||
|
* produce an insertable tuple.
|
||||||
|
*
|
||||||
|
* Caution: more than likely, the passed-in slot is the same as the
|
||||||
|
* junkfilter's output slot, so we are clobbering the original value of
|
||||||
|
* slottuple by doing the filtering. This is OK since neither we nor our
|
||||||
|
* caller have any more interest in the prior contents of that slot.
|
||||||
*/
|
*/
|
||||||
if (newSlot != NULL)
|
if (newSlot != NULL)
|
||||||
intuple = newtuple = ExecRemoveJunk(relinfo->ri_junkFilter, newSlot);
|
{
|
||||||
|
slot = ExecFilterJunk(relinfo->ri_junkFilter, newSlot);
|
||||||
|
slottuple = ExecMaterializeSlot(slot);
|
||||||
|
newtuple = slottuple;
|
||||||
|
}
|
||||||
|
|
||||||
modifiedCols = GetModifiedColumns(relinfo, estate);
|
modifiedCols = GetModifiedColumns(relinfo, estate);
|
||||||
|
|
||||||
@ -2314,13 +2362,33 @@ ExecBRUpdateTriggers(EState *estate, EPQState *epqstate,
|
|||||||
relinfo->ri_TrigFunctions,
|
relinfo->ri_TrigFunctions,
|
||||||
relinfo->ri_TrigInstrument,
|
relinfo->ri_TrigInstrument,
|
||||||
GetPerTupleMemoryContext(estate));
|
GetPerTupleMemoryContext(estate));
|
||||||
if (oldtuple != newtuple && oldtuple != intuple)
|
if (oldtuple != newtuple && oldtuple != slottuple)
|
||||||
heap_freetuple(oldtuple);
|
heap_freetuple(oldtuple);
|
||||||
if (newtuple == NULL)
|
if (newtuple == NULL)
|
||||||
break;
|
{
|
||||||
|
heap_freetuple(trigtuple);
|
||||||
|
return NULL; /* "do nothing" */
|
||||||
|
}
|
||||||
}
|
}
|
||||||
heap_freetuple(trigtuple);
|
heap_freetuple(trigtuple);
|
||||||
return newtuple;
|
|
||||||
|
if (newtuple != slottuple)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Return the modified tuple using the es_trig_tuple_slot. We assume
|
||||||
|
* the tuple was allocated in per-tuple memory context, and therefore
|
||||||
|
* will go away by itself. The tuple table slot should not try to
|
||||||
|
* clear it.
|
||||||
|
*/
|
||||||
|
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
||||||
|
TupleDesc tupdesc = RelationGetDescr(relinfo->ri_RelationDesc);
|
||||||
|
|
||||||
|
if (newslot->tts_tupleDescriptor != tupdesc)
|
||||||
|
ExecSetSlotDescriptor(newslot, tupdesc);
|
||||||
|
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
||||||
|
slot = newslot;
|
||||||
|
}
|
||||||
|
return slot;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@ -2342,14 +2410,15 @@ ExecARUpdateTriggers(EState *estate, ResultRelInfo *relinfo,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
HeapTuple
|
TupleTableSlot *
|
||||||
ExecIRUpdateTriggers(EState *estate, ResultRelInfo *relinfo,
|
ExecIRUpdateTriggers(EState *estate, ResultRelInfo *relinfo,
|
||||||
HeapTuple oldtuple, HeapTuple newtuple)
|
HeapTuple trigtuple, TupleTableSlot *slot)
|
||||||
{
|
{
|
||||||
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
TriggerDesc *trigdesc = relinfo->ri_TrigDesc;
|
||||||
|
HeapTuple slottuple = ExecMaterializeSlot(slot);
|
||||||
|
HeapTuple newtuple = slottuple;
|
||||||
TriggerData LocTriggerData;
|
TriggerData LocTriggerData;
|
||||||
HeapTuple intuple = newtuple;
|
HeapTuple oldtuple;
|
||||||
HeapTuple rettuple;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
LocTriggerData.type = T_TriggerData;
|
LocTriggerData.type = T_TriggerData;
|
||||||
@ -2367,26 +2436,42 @@ ExecIRUpdateTriggers(EState *estate, ResultRelInfo *relinfo,
|
|||||||
TRIGGER_TYPE_UPDATE))
|
TRIGGER_TYPE_UPDATE))
|
||||||
continue;
|
continue;
|
||||||
if (!TriggerEnabled(estate, relinfo, trigger, LocTriggerData.tg_event,
|
if (!TriggerEnabled(estate, relinfo, trigger, LocTriggerData.tg_event,
|
||||||
NULL, oldtuple, newtuple))
|
NULL, trigtuple, newtuple))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
LocTriggerData.tg_trigtuple = oldtuple;
|
LocTriggerData.tg_trigtuple = trigtuple;
|
||||||
LocTriggerData.tg_newtuple = newtuple;
|
LocTriggerData.tg_newtuple = oldtuple = newtuple;
|
||||||
LocTriggerData.tg_trigtuplebuf = InvalidBuffer;
|
LocTriggerData.tg_trigtuplebuf = InvalidBuffer;
|
||||||
LocTriggerData.tg_newtuplebuf = InvalidBuffer;
|
LocTriggerData.tg_newtuplebuf = InvalidBuffer;
|
||||||
LocTriggerData.tg_trigger = trigger;
|
LocTriggerData.tg_trigger = trigger;
|
||||||
rettuple = ExecCallTriggerFunc(&LocTriggerData,
|
newtuple = ExecCallTriggerFunc(&LocTriggerData,
|
||||||
i,
|
i,
|
||||||
relinfo->ri_TrigFunctions,
|
relinfo->ri_TrigFunctions,
|
||||||
relinfo->ri_TrigInstrument,
|
relinfo->ri_TrigInstrument,
|
||||||
GetPerTupleMemoryContext(estate));
|
GetPerTupleMemoryContext(estate));
|
||||||
if (newtuple != rettuple && newtuple != intuple)
|
if (oldtuple != newtuple && oldtuple != slottuple)
|
||||||
heap_freetuple(newtuple);
|
heap_freetuple(oldtuple);
|
||||||
newtuple = rettuple;
|
|
||||||
if (newtuple == NULL)
|
if (newtuple == NULL)
|
||||||
break;
|
return NULL; /* "do nothing" */
|
||||||
}
|
}
|
||||||
return newtuple;
|
|
||||||
|
if (newtuple != slottuple)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Return the modified tuple using the es_trig_tuple_slot. We assume
|
||||||
|
* the tuple was allocated in per-tuple memory context, and therefore
|
||||||
|
* will go away by itself. The tuple table slot should not try to
|
||||||
|
* clear it.
|
||||||
|
*/
|
||||||
|
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
||||||
|
TupleDesc tupdesc = RelationGetDescr(relinfo->ri_RelationDesc);
|
||||||
|
|
||||||
|
if (newslot->tts_tupleDescriptor != tupdesc)
|
||||||
|
ExecSetSlotDescriptor(newslot, tupdesc);
|
||||||
|
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
||||||
|
slot = newslot;
|
||||||
|
}
|
||||||
|
return slot;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -199,60 +199,26 @@ ExecInsert(TupleTableSlot *slot,
|
|||||||
if (resultRelInfo->ri_TrigDesc &&
|
if (resultRelInfo->ri_TrigDesc &&
|
||||||
resultRelInfo->ri_TrigDesc->trig_insert_before_row)
|
resultRelInfo->ri_TrigDesc->trig_insert_before_row)
|
||||||
{
|
{
|
||||||
HeapTuple newtuple;
|
slot = ExecBRInsertTriggers(estate, resultRelInfo, slot);
|
||||||
|
|
||||||
newtuple = ExecBRInsertTriggers(estate, resultRelInfo, tuple);
|
if (slot == NULL) /* "do nothing" */
|
||||||
|
|
||||||
if (newtuple == NULL) /* "do nothing" */
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (newtuple != tuple) /* modified by Trigger(s) */
|
/* trigger might have changed tuple */
|
||||||
{
|
tuple = ExecMaterializeSlot(slot);
|
||||||
/*
|
|
||||||
* Put the modified tuple into a slot for convenience of routines
|
|
||||||
* below. We assume the tuple was allocated in per-tuple memory
|
|
||||||
* context, and therefore will go away by itself. The tuple table
|
|
||||||
* slot should not try to clear it.
|
|
||||||
*/
|
|
||||||
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
|
||||||
TupleDesc tupdesc = RelationGetDescr(resultRelationDesc);
|
|
||||||
|
|
||||||
if (newslot->tts_tupleDescriptor != tupdesc)
|
|
||||||
ExecSetSlotDescriptor(newslot, tupdesc);
|
|
||||||
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
|
||||||
slot = newslot;
|
|
||||||
tuple = newtuple;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* INSTEAD OF ROW INSERT Triggers */
|
/* INSTEAD OF ROW INSERT Triggers */
|
||||||
if (resultRelInfo->ri_TrigDesc &&
|
if (resultRelInfo->ri_TrigDesc &&
|
||||||
resultRelInfo->ri_TrigDesc->trig_insert_instead_row)
|
resultRelInfo->ri_TrigDesc->trig_insert_instead_row)
|
||||||
{
|
{
|
||||||
HeapTuple newtuple;
|
slot = ExecIRInsertTriggers(estate, resultRelInfo, slot);
|
||||||
|
|
||||||
newtuple = ExecIRInsertTriggers(estate, resultRelInfo, tuple);
|
if (slot == NULL) /* "do nothing" */
|
||||||
|
|
||||||
if (newtuple == NULL) /* "do nothing" */
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (newtuple != tuple) /* modified by Trigger(s) */
|
/* trigger might have changed tuple */
|
||||||
{
|
tuple = ExecMaterializeSlot(slot);
|
||||||
/*
|
|
||||||
* Put the modified tuple into a slot for convenience of routines
|
|
||||||
* below. We assume the tuple was allocated in per-tuple memory
|
|
||||||
* context, and therefore will go away by itself. The tuple table
|
|
||||||
* slot should not try to clear it.
|
|
||||||
*/
|
|
||||||
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
|
||||||
TupleDesc tupdesc = RelationGetDescr(resultRelationDesc);
|
|
||||||
|
|
||||||
if (newslot->tts_tupleDescriptor != tupdesc)
|
|
||||||
ExecSetSlotDescriptor(newslot, tupdesc);
|
|
||||||
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
|
||||||
slot = newslot;
|
|
||||||
tuple = newtuple;
|
|
||||||
}
|
|
||||||
|
|
||||||
newId = InvalidOid;
|
newId = InvalidOid;
|
||||||
}
|
}
|
||||||
@ -533,31 +499,14 @@ ExecUpdate(ItemPointer tupleid,
|
|||||||
if (resultRelInfo->ri_TrigDesc &&
|
if (resultRelInfo->ri_TrigDesc &&
|
||||||
resultRelInfo->ri_TrigDesc->trig_update_before_row)
|
resultRelInfo->ri_TrigDesc->trig_update_before_row)
|
||||||
{
|
{
|
||||||
HeapTuple newtuple;
|
slot = ExecBRUpdateTriggers(estate, epqstate, resultRelInfo,
|
||||||
|
tupleid, slot);
|
||||||
|
|
||||||
newtuple = ExecBRUpdateTriggers(estate, epqstate, resultRelInfo,
|
if (slot == NULL) /* "do nothing" */
|
||||||
tupleid, tuple);
|
|
||||||
|
|
||||||
if (newtuple == NULL) /* "do nothing" */
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (newtuple != tuple) /* modified by Trigger(s) */
|
/* trigger might have changed tuple */
|
||||||
{
|
tuple = ExecMaterializeSlot(slot);
|
||||||
/*
|
|
||||||
* Put the modified tuple into a slot for convenience of routines
|
|
||||||
* below. We assume the tuple was allocated in per-tuple memory
|
|
||||||
* context, and therefore will go away by itself. The tuple table
|
|
||||||
* slot should not try to clear it.
|
|
||||||
*/
|
|
||||||
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
|
||||||
TupleDesc tupdesc = RelationGetDescr(resultRelationDesc);
|
|
||||||
|
|
||||||
if (newslot->tts_tupleDescriptor != tupdesc)
|
|
||||||
ExecSetSlotDescriptor(newslot, tupdesc);
|
|
||||||
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
|
||||||
slot = newslot;
|
|
||||||
tuple = newtuple;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* INSTEAD OF ROW UPDATE Triggers */
|
/* INSTEAD OF ROW UPDATE Triggers */
|
||||||
@ -565,7 +514,6 @@ ExecUpdate(ItemPointer tupleid,
|
|||||||
resultRelInfo->ri_TrigDesc->trig_update_instead_row)
|
resultRelInfo->ri_TrigDesc->trig_update_instead_row)
|
||||||
{
|
{
|
||||||
HeapTupleData oldtup;
|
HeapTupleData oldtup;
|
||||||
HeapTuple newtuple;
|
|
||||||
|
|
||||||
Assert(oldtuple != NULL);
|
Assert(oldtuple != NULL);
|
||||||
oldtup.t_data = oldtuple;
|
oldtup.t_data = oldtuple;
|
||||||
@ -573,29 +521,14 @@ ExecUpdate(ItemPointer tupleid,
|
|||||||
ItemPointerSetInvalid(&(oldtup.t_self));
|
ItemPointerSetInvalid(&(oldtup.t_self));
|
||||||
oldtup.t_tableOid = InvalidOid;
|
oldtup.t_tableOid = InvalidOid;
|
||||||
|
|
||||||
newtuple = ExecIRUpdateTriggers(estate, resultRelInfo,
|
slot = ExecIRUpdateTriggers(estate, resultRelInfo,
|
||||||
&oldtup, tuple);
|
&oldtup, slot);
|
||||||
|
|
||||||
if (newtuple == NULL) /* "do nothing" */
|
if (slot == NULL) /* "do nothing" */
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
if (newtuple != tuple) /* modified by Trigger(s) */
|
/* trigger might have changed tuple */
|
||||||
{
|
tuple = ExecMaterializeSlot(slot);
|
||||||
/*
|
|
||||||
* Put the modified tuple into a slot for convenience of routines
|
|
||||||
* below. We assume the tuple was allocated in per-tuple memory
|
|
||||||
* context, and therefore will go away by itself. The tuple table
|
|
||||||
* slot should not try to clear it.
|
|
||||||
*/
|
|
||||||
TupleTableSlot *newslot = estate->es_trig_tuple_slot;
|
|
||||||
TupleDesc tupdesc = RelationGetDescr(resultRelationDesc);
|
|
||||||
|
|
||||||
if (newslot->tts_tupleDescriptor != tupdesc)
|
|
||||||
ExecSetSlotDescriptor(newslot, tupdesc);
|
|
||||||
ExecStoreTuple(newtuple, newslot, InvalidBuffer, false);
|
|
||||||
slot = newslot;
|
|
||||||
tuple = newtuple;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -132,16 +132,16 @@ extern void ExecBSInsertTriggers(EState *estate,
|
|||||||
ResultRelInfo *relinfo);
|
ResultRelInfo *relinfo);
|
||||||
extern void ExecASInsertTriggers(EState *estate,
|
extern void ExecASInsertTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo);
|
ResultRelInfo *relinfo);
|
||||||
extern HeapTuple ExecBRInsertTriggers(EState *estate,
|
extern TupleTableSlot *ExecBRInsertTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
HeapTuple trigtuple);
|
TupleTableSlot *slot);
|
||||||
extern void ExecARInsertTriggers(EState *estate,
|
extern void ExecARInsertTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
HeapTuple trigtuple,
|
HeapTuple trigtuple,
|
||||||
List *recheckIndexes);
|
List *recheckIndexes);
|
||||||
extern HeapTuple ExecIRInsertTriggers(EState *estate,
|
extern TupleTableSlot *ExecIRInsertTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
HeapTuple trigtuple);
|
TupleTableSlot *slot);
|
||||||
extern void ExecBSDeleteTriggers(EState *estate,
|
extern void ExecBSDeleteTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo);
|
ResultRelInfo *relinfo);
|
||||||
extern void ExecASDeleteTriggers(EState *estate,
|
extern void ExecASDeleteTriggers(EState *estate,
|
||||||
@ -160,20 +160,20 @@ extern void ExecBSUpdateTriggers(EState *estate,
|
|||||||
ResultRelInfo *relinfo);
|
ResultRelInfo *relinfo);
|
||||||
extern void ExecASUpdateTriggers(EState *estate,
|
extern void ExecASUpdateTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo);
|
ResultRelInfo *relinfo);
|
||||||
extern HeapTuple ExecBRUpdateTriggers(EState *estate,
|
extern TupleTableSlot *ExecBRUpdateTriggers(EState *estate,
|
||||||
EPQState *epqstate,
|
EPQState *epqstate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
ItemPointer tupleid,
|
ItemPointer tupleid,
|
||||||
HeapTuple newtuple);
|
TupleTableSlot *slot);
|
||||||
extern void ExecARUpdateTriggers(EState *estate,
|
extern void ExecARUpdateTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
ItemPointer tupleid,
|
ItemPointer tupleid,
|
||||||
HeapTuple newtuple,
|
HeapTuple newtuple,
|
||||||
List *recheckIndexes);
|
List *recheckIndexes);
|
||||||
extern HeapTuple ExecIRUpdateTriggers(EState *estate,
|
extern TupleTableSlot *ExecIRUpdateTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo,
|
ResultRelInfo *relinfo,
|
||||||
HeapTuple oldtuple,
|
HeapTuple trigtuple,
|
||||||
HeapTuple newtuple);
|
TupleTableSlot *slot);
|
||||||
extern void ExecBSTruncateTriggers(EState *estate,
|
extern void ExecBSTruncateTriggers(EState *estate,
|
||||||
ResultRelInfo *relinfo);
|
ResultRelInfo *relinfo);
|
||||||
extern void ExecASTruncateTriggers(EState *estate,
|
extern void ExecASTruncateTriggers(EState *estate,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user