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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user