diff options
Diffstat (limited to 'src/include/executor/hashjoin.h')
-rw-r--r-- | src/include/executor/hashjoin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/executor/hashjoin.h b/src/include/executor/hashjoin.h index 6950bb25bde..e6f0766b720 100644 --- a/src/include/executor/hashjoin.h +++ b/src/include/executor/hashjoin.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: hashjoin.h,v 1.5 1997/09/08 02:36:20 momjian Exp $ + * $Id: hashjoin.h,v 1.6 1997/09/08 21:52:00 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -57,7 +57,7 @@ typedef struct HashTableData int curbatch; int nprocess; int pcount; -} HashTableData; /* real hash table follows here */ +} HashTableData; /* real hash table follows here */ typedef HashTableData *HashJoinTable; @@ -65,7 +65,7 @@ typedef struct OverflowTupleData { RelativeAddr tuple; /* HeapTuple */ RelativeAddr next; /* struct OverflowTupleData * */ -} OverflowTupleData; /* real tuple follows here */ +} OverflowTupleData; /* real tuple follows here */ typedef OverflowTupleData *OverflowTuple; @@ -75,7 +75,7 @@ typedef struct HashBucketData RelativeAddr bottom; /* HeapTuple */ RelativeAddr firstotuple; /* OverflowTuple */ RelativeAddr lastotuple; /* OverflowTuple */ -} HashBucketData; /* real bucket follows here */ +} HashBucketData; /* real bucket follows here */ typedef HashBucketData *HashBucket; |