From d29b66882a5de0878c496bd71d0c69af17197ab7 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 11 Jul 2006 21:05:57 +0000 Subject: 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. --- src/backend/access/gin/ginutil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/access/gin/ginutil.c') diff --git a/src/backend/access/gin/ginutil.c b/src/backend/access/gin/ginutil.c index 544956c84ef..3c665a1722a 100644 --- a/src/backend/access/gin/ginutil.c +++ b/src/backend/access/gin/ginutil.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/gin/ginutil.c,v 1.3 2006/07/03 22:45:36 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/gin/ginutil.c,v 1.4 2006/07/11 21:05:57 tgl Exp $ *------------------------------------------------------------------------- */ @@ -213,7 +213,7 @@ ginoptions(PG_FUNCTION_ARGS) * It's not clear that fillfactor is useful for GIN, but for the moment * we'll accept it anyway. (It won't do anything...) */ -#define GIN_MIN_FILLFACTOR 50 +#define GIN_MIN_FILLFACTOR 10 #define GIN_DEFAULT_FILLFACTOR 100 result = default_reloptions(reloptions, validate, -- cgit v1.2.3