diff options
Diffstat (limited to 'src/include/executor/spi_priv.h')
-rw-r--r-- | src/include/executor/spi_priv.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/executor/spi_priv.h b/src/include/executor/spi_priv.h index 1ba7d765e59..a21bbc5e7c0 100644 --- a/src/include/executor/spi_priv.h +++ b/src/include/executor/spi_priv.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/executor/spi_priv.h,v 1.22 2004/12/31 22:03:29 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/executor/spi_priv.h,v 1.23 2005/10/01 18:43:19 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -18,8 +18,11 @@ typedef struct { + /* current results */ uint32 processed; /* by Executor */ + Oid lastoid; SPITupleTable *tuptable; + MemoryContext procCxt; /* procedure context */ MemoryContext execCxt; /* executor context */ MemoryContext savedcxt; |