*** pgsql/src/backend/access/gist/gistutil.c 2009/01/01 17:23:35 1.32 --- pgsql/src/backend/access/gist/gistutil.c 2009/01/05 17:14:28 1.33 *************** *** 8,14 **** * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.31 2008/09/30 10:52:10 heikki Exp $ *------------------------------------------------------------------------- */ #include "postgres.h" --- 8,14 ---- * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.32 2009/01/01 17:23:35 momjian Exp $ *------------------------------------------------------------------------- */ #include "postgres.h" *************** gistoptions(PG_FUNCTION_ARGS) *** 670,678 **** bool validate = PG_GETARG_BOOL(1); bytea *result; ! result = default_reloptions(reloptions, validate, ! GIST_MIN_FILLFACTOR, ! GIST_DEFAULT_FILLFACTOR); if (result) PG_RETURN_BYTEA_P(result); PG_RETURN_NULL(); --- 670,677 ---- bool validate = PG_GETARG_BOOL(1); bytea *result; ! result = default_reloptions(reloptions, validate, RELOPT_KIND_GIST); ! if (result) PG_RETURN_BYTEA_P(result); PG_RETURN_NULL();