From 1d8bbfd2e7cfb72cbe4d5c5d4fa650a28dedac0b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 19 Aug 1997 21:40:56 +0000 Subject: Make functions static where possible, enclose unused functions in #ifdef NOT_USED. --- src/include/access/gist.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/include/access/gist.h') diff --git a/src/include/access/gist.h b/src/include/access/gist.h index 1fc4a7112b0..1e8efc18e0f 100644 --- a/src/include/access/gist.h +++ b/src/include/access/gist.h @@ -183,24 +183,13 @@ extern void gistbuild(Relation heap, extern InsertIndexResult gistinsert(Relation r, Datum *datum, char *nulls,ItemPointer ht_ctid, Relation heapRel); extern void _gistdump(Relation r); -extern char *text_range_out(TXTRANGE *r); -extern char *int_range_out(INTRANGE *r); extern void gistfreestack(GISTSTACK *s); extern void initGISTstate(GISTSTATE *giststate, Relation index); extern void gistdentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr, Relation r, Page pg, OffsetNumber o, int b, bool l) ; -extern void gistcentryinit(GISTSTATE *giststate, GISTENTRY *e, char *pr, - Relation r, Page pg, OffsetNumber o, int b, bool l) ; extern StrategyNumber RelationGetGISTStrategy(Relation, AttrNumber, RegProcedure); /* gistget.c */ extern RetrieveIndexResult gistgettuple(IndexScanDesc s, ScanDirection dir); -extern bool gistindex_keytest(IndexTuple tuple, TupleDesc tupdesc, - int scanKeySize, ScanKey key, GISTSTATE *giststate, - Relation r, Page p, OffsetNumber offset); - -/* giststrat.c */ -extern bool RelationInvokeGISTStrategy(Relation r, AttrNumber attnum, - StrategyNumber s, Datum left, Datum right); #endif /* GIST_H */ -- cgit v1.2.3