1 /*-------------------------------------------------------------------------
4 * routines defined in access/gist/gistscan.c
7 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/access/gistscan.h
12 *-------------------------------------------------------------------------
17 #include "access/amapi.h"
19 extern IndexScanDesc
gistbeginscan(Relation r
, int nkeys
, int norderbys
);
20 extern void gistrescan(IndexScanDesc scan
, ScanKey key
, int nkeys
,
21 ScanKey orderbys
, int norderbys
);
22 extern void gistendscan(IndexScanDesc scan
);
24 #endif /* GISTSCAN_H */