From 8325d9fc3b5ef8b4d65fd0c650e79b20b1af5b4b Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 21 Oct 1996 05:05:42 +0000 Subject: [PATCH] Define prototypes from giststrat.c required in gistscan.c --- src/include/access/giststrat.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/include/access/giststrat.h b/src/include/access/giststrat.h index e8595c8850..82d8c761e0 100644 --- a/src/include/access/giststrat.h +++ b/src/include/access/giststrat.h @@ -10,5 +10,13 @@ *------------------------------------------------------------------------- */ #ifndef GISTSTRAT_H +#define GISTSTRAT_H + +StrategyNumber +RelationGetGISTStrategy(Relation r, AttrNumber attnum, RegProcedure proc); + +bool +RelationInvokeGISTStrategy(Relation r, AttrNumber attnum, StrategyNumber s, + Datum left, Datum right); #endif /* GISTSTRAT_H */