diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-19 02:06:15 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-19 02:06:15 +0000 |
commit | 677028177e231ca8dce4c237a026e3d3b58cb314 (patch) | |
tree | 2388a0c5fb10960e5a336a97f3282c727ac412a9 /src/backend/access/gist/gist.c | |
parent | 435ed7aaa10e46f77fbf471df9eee3d13dd0e419 (diff) | |
download | postgresql-677028177e231ca8dce4c237a026e3d3b58cb314.tar.gz postgresql-677028177e231ca8dce4c237a026e3d3b58cb314.zip |
Clean up gcc warning about unused static decl.
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 0e4263b80ec..32111347423 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -6,7 +6,7 @@ * * * IDENTIFICATION - * + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.44 1999/07/19 02:06:15 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -51,7 +51,9 @@ void gistdelete(Relation r, ItemPointer tid); static IndexTuple gist_tuple_replacekey(Relation r, GISTENTRY entry, IndexTuple t); static void gistcentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr, Relation r, Page pg, OffsetNumber o, int b, bool l); +#ifdef GISTDEBUG static char *int_range_out(INTRANGE *r); +#endif /* ** routine to build an index. Basically calls insert over and over |