1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Keep the contents of ItemPointerData not the pointers so that

per tuple memory context doesn't discard them.
This commit is contained in:
Hiroshi Inoue
2001-09-29 07:57:06 +00:00
parent 793bcc67b2
commit 53b2e00491
2 changed files with 13 additions and 18 deletions

View File

@ -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;