1996-08-27 21:50:29 +00:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* gistscan.h--
|
1997-09-07 05:04:48 +00:00
|
|
|
* routines defined in access/gisr/gistscan.c
|
1996-08-27 21:50:29 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* rtscan.h,v 1.2 1995/06/14 00:06:58 jolly Exp
|
|
|
|
*
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
#ifndef GISTSCAN_H
|
|
|
|
|
1996-11-10 03:06:38 +00:00
|
|
|
#include <access/relscan.h>
|
1996-11-05 08:18:44 +00:00
|
|
|
#include <storage/off.h>
|
|
|
|
#include <storage/block.h>
|
|
|
|
#include <utils/rel.h>
|
1996-11-03 12:13:35 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
extern IndexScanDesc
|
|
|
|
gistbeginscan(Relation r, bool fromEnd,
|
|
|
|
uint16 nkeys, ScanKey key);
|
|
|
|
extern void gistrescan(IndexScanDesc s, bool fromEnd, ScanKey key);
|
|
|
|
extern void gistmarkpos(IndexScanDesc s);
|
|
|
|
extern void gistrestrpos(IndexScanDesc s);
|
|
|
|
extern void gistendscan(IndexScanDesc s);
|
|
|
|
extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
|
1996-08-27 21:50:29 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
#endif /* GISTSCAN_H */
|