blob: 82d8c761e0a3f94dfdfe883c364d545fe0ed4015 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-------------------------------------------------------------------------
*
* giststrat.h--
* routines defined in access/gist/giststrat.c
*
*
*
* rtstrat.h,v 1.2 1995/02/12 02:54:51 andrew Exp
*
*-------------------------------------------------------------------------
*/
#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 */
|