summaryrefslogtreecommitdiff
path: root/src/include/nodes/execnodes.h
diff options
context:
space:
mode:
authorHiroshi Inoue <inoue@tpf.co.jp>2001-09-29 07:57:06 +0000
committerHiroshi Inoue <inoue@tpf.co.jp>2001-09-29 07:57:06 +0000
commit53b2e00491a2ea3016b5cd66498e58883dde1785 (patch)
treeba07b498da3382756a8504e05f90b2cc5df21709 /src/include/nodes/execnodes.h
parent793bcc67b2a3d2c540dc1baa5a6a3808dadbb961 (diff)
Keep the contents of ItemPointerData not the pointers so that
per tuple memory context doesn't discard them.
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r--src/include/nodes/execnodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h
index 4e1bc683d5b..ef880505c18 100644
--- a/src/include/nodes/execnodes.h
+++ b/src/include/nodes/execnodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: execnodes.h,v 1.62 2001/07/16 05:07:00 tgl Exp $
+ * $Id: execnodes.h,v 1.63 2001/09/29 07:57:04 inoue Exp $
*
*-------------------------------------------------------------------------
*/
@@ -461,7 +461,7 @@ typedef struct TidScanState
int tss_NumTids;
int tss_TidPtr;
int tss_MarkTidPtr;
- ItemPointer *tss_TidList;
+ ItemPointerData* tss_TidList;
HeapTupleData tss_htup;
} TidScanState;