diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-05-30 19:53:40 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-05-30 19:53:40 +0000 |
commit | f1d5d0905c16021cd715ea078c806bf7e0673a83 (patch) | |
tree | 6b038b087cf15e8bf144450bb90a941c54f53eb9 /src/backend/access/gist/gist.c | |
parent | f504ad1b4d6ebf991bb824765aa1f91eedf52a16 (diff) | |
download | postgresql-f1d5d0905c16021cd715ea078c806bf7e0673a83.tar.gz |
Tweak StrategyEvaluation data structure to eliminate hardwired limit on
number of strategies supported by an index AM. Add missing copyright
notices and CVS $Header$ markers to GIST source files.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 4b239c76c8..8f23d14d79 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -4,13 +4,14 @@ * interface routines for the postgres GiST index access method. * * + * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.76 2001/05/15 14:14:49 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.77 2001/05/30 19:53:39 tgl Exp $ * *------------------------------------------------------------------------- */ - #include "postgres.h" #include "access/genam.h" @@ -22,9 +23,9 @@ #include "executor/executor.h" #include "miscadmin.h" #include "utils/syscache.h" - #include "access/xlogutils.h" + /* result's status */ #define INSERTED 0x01 #define SPLITED 0x02 @@ -78,9 +79,9 @@ static void gistcentryinit(GISTSTATE *giststate, OffsetNumber o, int b, bool l); #undef GISTDEBUG + #ifdef GISTDEBUG static void gist_dumptree(Relation r, int level, BlockNumber blk, OffsetNumber coff); - #endif /* |