aboutsummaryrefslogtreecommitdiff
path: root/src/include/utils/hsearch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/utils/hsearch.h')
-rw-r--r--src/include/utils/hsearch.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/utils/hsearch.h b/src/include/utils/hsearch.h
index 93742aef063..9d47d73d386 100644
--- a/src/include/utils/hsearch.h
+++ b/src/include/utils/hsearch.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: hsearch.h,v 1.18 2001/01/24 19:43:28 momjian Exp $
+ * $Id: hsearch.h,v 1.19 2001/03/22 04:01:12 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -84,7 +84,7 @@ typedef struct htab
char *segbase; /* segment base address for calculating
* pointer values */
SEG_OFFSET *dir; /* 'directory' of segm starts */
- void *(*alloc) (Size); /* memory allocator */
+ void *(*alloc) (Size);/* memory allocator */
} HTAB;
typedef struct hashctl
@@ -98,7 +98,7 @@ typedef struct hashctl
long max_dsize; /* limit to dsize if directory size is
* limited */
long *segbase; /* base for calculating bucket + seg ptrs */
- void *(*alloc) (Size); /* memory allocation function */
+ void *(*alloc) (Size);/* memory allocation function */
long *dir; /* directory if allocated already */
long *hctl; /* location of header information in shd
* mem */
@@ -134,8 +134,8 @@ typedef enum
/* hash_seq status (should be considered an opaque type by callers) */
typedef struct
{
- HTAB *hashp;
- long curBucket;
+ HTAB *hashp;
+ long curBucket;
BUCKET_INDEX curIndex;
} HASH_SEQ_STATUS;