diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-11-20 18:38:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-11-20 18:38:20 +0000 |
commit | 40314f2dac2ecb2974d03c064917a70de74c63d5 (patch) | |
tree | aa1f4d3aa30edf40a953dcc5e2b40bd342e96a8c /src/backend/executor/execMain.c | |
parent | 33a9af738d24766ea487c56c2287102a9214c891 (diff) | |
download | postgresql-40314f2dac2ecb2974d03c064917a70de74c63d5.tar.gz postgresql-40314f2dac2ecb2974d03c064917a70de74c63d5.zip |
Modify tuptoaster's API so that it does not try to modify the passed
tuple in-place, but instead passes back an all-new tuple structure if
any changes are needed. This is a much cleaner and more robust solution
for the bug discovered by Alexey Beschiokov; accordingly, revert the
quick hack I installed yesterday.
With this change, HeapTupleData.t_datamcxt is no longer needed; will
remove it in a separate commit in HEAD only.
Diffstat (limited to 'src/backend/executor/execMain.c')
-rw-r--r-- | src/backend/executor/execMain.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 6f79c4d58b0..c0c6cfbe500 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -26,7 +26,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.259 2005/11/19 20:57:44 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/executor/execMain.c,v 1.260 2005/11/20 18:38:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1446,16 +1446,6 @@ ExecInsert(TupleTableSlot *slot, setLastTid(&(tuple->t_self)); /* - * KLUGE SOLUTION for bug found post 8.1 release: if the tuple toaster - * fired on the tuple then it changed the physical tuple inside the - * tuple slot, leaving any extracted information invalid. Mark the - * extracted state invalid just in case. Need to fix things so that - * the toaster gets to run against the tuple before we materialize it, - * but that's way too invasive for a stable branch. - */ - slot->tts_nvalid = 0; - - /* * insert index entries for tuple */ if (resultRelInfo->ri_NumIndices > 0) @@ -1710,16 +1700,6 @@ lreplace:; (estate->es_processed)++; /* - * KLUGE SOLUTION for bug found post 8.1 release: if the tuple toaster - * fired on the tuple then it changed the physical tuple inside the - * tuple slot, leaving any extracted information invalid. Mark the - * extracted state invalid just in case. Need to fix things so that - * the toaster gets to run against the tuple before we materialize it, - * but that's way too invasive for a stable branch. - */ - slot->tts_nvalid = 0; - - /* * Note: instead of having to update the old index tuples associated with * the heap tuple, all we do is form and insert new index tuples. This is * because UPDATEs are actually DELETEs and INSERTs, and index tuple |