summaryrefslogtreecommitdiff
path: root/src/include/access/gistscan.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/access/gistscan.h')
-rw-r--r--src/include/access/gistscan.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/access/gistscan.h b/src/include/access/gistscan.h
index 0a4fe7f5546..9894e71b01b 100644
--- a/src/include/access/gistscan.h
+++ b/src/include/access/gistscan.h
@@ -11,10 +11,17 @@
*/
#ifndef GISTSCAN_H
+#include <access/relscan.h>
#include <storage/off.h>
#include <storage/block.h>
#include <utils/rel.h>
-void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
+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);
#endif /* GISTSCAN_H */