1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-27 23:21:58 +03:00

Apply 7.1.3 changes to the current tree also.

This commit is contained in:
Hiroshi Inoue
2001-09-08 16:15:28 +00:00
parent c0d4d5473a
commit fc5ec424ab
3 changed files with 15 additions and 3 deletions

View File

@ -27,7 +27,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.145 2001/08/10 18:57:35 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.146 2001/09/08 16:15:28 inoue Exp $
*
*-------------------------------------------------------------------------
*/
@ -1268,6 +1268,7 @@ ExecAppend(TupleTableSlot *slot,
* insert the tuple
*/
newId = heap_insert(resultRelationDesc, tuple);
setLastTid(&(tuple->t_self));
IncrAppended();
(estate->es_processed)++;