diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-10-21 05:05:42 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-21 05:05:42 +0000 |
commit | 8325d9fc3b5ef8b4d65fd0c650e79b20b1af5b4b (patch) | |
tree | 7f119ee671e1c43ec7b73ff36018d362af293fe1 /src | |
parent | d458a1c747d80ce5a3627a39ff9c319cfeda550d (diff) | |
download | postgresql-8325d9fc3b5ef8b4d65fd0c650e79b20b1af5b4b.tar.gz postgresql-8325d9fc3b5ef8b4d65fd0c650e79b20b1af5b4b.zip |
Define prototypes from giststrat.c required in gistscan.c
Diffstat (limited to 'src')
-rw-r--r-- | src/include/access/giststrat.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/access/giststrat.h b/src/include/access/giststrat.h index e8595c8850a..82d8c761e0a 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 */ |