summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane1998-10-04 20:19:08 +0000
committerTom Lane1998-10-04 20:19:08 +0000
commit280acf0904340b1911b11e0ce8afe75cbfd1a650 (patch)
tree3d50062cc66e4babed9d3184bb7062adc05647de /src/include
parent3512284bdaa34cc03051543f0cdb7fa19fcd9385 (diff)
hash.h's use of BSHIFT conflicts with <sys/param.h> on my
system. Finally got tired of looking at the compiler warning messages. BSHIFT isn't all that useful, so I just took out the macro.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/access/hash.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/access/hash.h b/src/include/access/hash.h
index fe49bad037c..019fb7d58a2 100644
--- a/src/include/access/hash.h
+++ b/src/include/access/hash.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: hash.h,v 1.19 1998/09/01 04:34:11 momjian Exp $
+ * $Id: hash.h,v 1.20 1998/10/04 20:19:06 tgl Exp $
*
* NOTES
* modeled after Margo Seltzer's hash implementation for unix.
@@ -165,7 +165,6 @@ typedef struct HashMetaPageData
typedef HashMetaPageData *HashMetaPage;
/* Short hands for accessing structure */
-#define BSHIFT hashm_bshift
#define OVFL_POINT hashm_ovflpoint
#define LAST_FREED hashm_lastfreed
#define MAX_BUCKET hashm_maxbucket