Fix failure to verify PGC_[SU_]BACKEND GUCs in pg_file_settings view.
[pgsql.git] / src / include / access / gistscan.h
blobc02445a698086145f575ef52ac2c632eae1ee0da
1 /*-------------------------------------------------------------------------
3 * gistscan.h
4 * routines defined in access/gist/gistscan.c
7 * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/access/gistscan.h
12 *-------------------------------------------------------------------------
14 #ifndef GISTSCAN_H
15 #define GISTSCAN_H
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 */