mirror of
https://github.com/postgres/postgres.git
synced 2025-10-29 22:49:41 +03:00
23 lines
580 B
C
23 lines
580 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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 */
|