diff options
author | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-10-01 09:38:14 +0000 |
---|---|---|
committer | Hiroshi Inoue <inoue@tpf.co.jp> | 2001-10-01 09:38:14 +0000 |
commit | a59881aae1681fe25918327b6cb6ec80c7721029 (patch) | |
tree | d36fead7e50b2a9193e8883c8169aec8fbfdb6fd /src/include/nodes/execnodes.h | |
parent | e419d86fe244f8b1dc495ba43ddbcf65f7114e2f (diff) |
Keep the contents of TIDs not the pointers.
Tid scan has been broken for 7.1.
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r-- | src/include/nodes/execnodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index c5a30ebe900..d81ca4ba534 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.57.2.1 2001/05/15 00:34:02 tgl Exp $ + * $Id: execnodes.h,v 1.57.2.2 2001/10/01 09:38:14 inoue Exp $ * *------------------------------------------------------------------------- */ @@ -454,7 +454,7 @@ typedef struct TidScanState int tss_NumTids; int tss_TidPtr; int tss_MarkTidPtr; - ItemPointer *tss_TidList; + ItemPointerData* tss_TidList; HeapTupleData tss_htup; } TidScanState; |