diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-06-28 17:05:49 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-06-28 17:05:49 +0000 |
commit | cfc710312e75e1d5ed49e42327a4e32386d6b142 (patch) | |
tree | f594692caacaf5f3167f95ffb7614e8b4e7c0497 /src/include/nodes/execnodes.h | |
parent | 15897332ed5435149eac7b0a80cd5e2a0650e199 (diff) |
Adjust TupleHashTables to use MinimalTuple format for contained tuples.
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 7a9a651e1e5..97deb8b15c7 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.150 2006/04/30 18:30:40 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/execnodes.h,v 1.151 2006/06/28 17:05:49 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -367,7 +367,7 @@ typedef struct TupleHashTableData *TupleHashTable; typedef struct TupleHashEntryData { /* firstTuple must be the first field in this struct! */ - HeapTuple firstTuple; /* copy of first tuple in this group */ + MinimalTuple firstTuple; /* copy of first tuple in this group */ /* there may be additional data beyond the end of this struct */ } TupleHashEntryData; /* VARIABLE LENGTH STRUCT */ |