diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-11 21:05:57 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-11 21:05:57 +0000 |
| commit | d29b66882a5de0878c496bd71d0c69af17197ab7 (patch) | |
| tree | 05555309b4fc4cb550274baadc4bb640c694cb4c /src/include/access/hash.h | |
| parent | 1be8f80288a26e676b8e3860eee07015021d30ba (diff) | |
| download | postgresql-d29b66882a5de0878c496bd71d0c69af17197ab7.tar.gz | |
Tweak fillfactor code as per my recent proposal. Fix nbtsort.c so that
it can handle small fillfactors for ordinary-sized index entries without
failing on large ones; fix nbtinsert.c to distinguish leaf and nonleaf
pages; change the minimum fillfactor to 10% for all index types.
Diffstat (limited to 'src/include/access/hash.h')
| -rw-r--r-- | src/include/access/hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/hash.h b/src/include/access/hash.h index 10646522d9..a845809a5d 100644 --- a/src/include/access/hash.h +++ b/src/include/access/hash.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/access/hash.h,v 1.71 2006/07/03 22:45:39 tgl Exp $ + * $PostgreSQL: pgsql/src/include/access/hash.h,v 1.72 2006/07/11 21:05:57 tgl Exp $ * * NOTES * modeled after Margo Seltzer's hash implementation for unix. @@ -167,7 +167,7 @@ typedef HashMetaPageData *HashMetaPage; MAXALIGN(sizeof(HashPageOpaqueData)) - \ sizeof(ItemIdData)) -#define HASH_MIN_FILLFACTOR 50 +#define HASH_MIN_FILLFACTOR 10 #define HASH_DEFAULT_FILLFACTOR 75 /* |
