1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Number of tuples inserted/affected by INSERT/UPDATE/DELETE...

This commit is contained in:
Vadim B. Mikheev
1997-08-27 09:05:24 +00:00
parent 40ac5a692b
commit 3751b49545
7 changed files with 116 additions and 85 deletions

View File

@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: execnodes.h,v 1.7 1997/08/06 03:42:02 momjian Exp $
* $Id: execnodes.h,v 1.8 1997/08/27 09:04:52 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@ -197,6 +197,8 @@ typedef struct EState {
TupleTable es_tupleTable;
JunkFilter *es_junkFilter;
int *es_refcount;
uint32 es_processed; /* # of tuples processed */
Oid es_lastoid; /* last oid processed (by INSERT) */
} EState;
/* ----------------