Consistently use "superuser" instead of "super user"
[pgsql.git] / src / include / access / gistscan.h
blob54451b5f77004c06d4348b8d7b5c2d6d21ea8fc8
1 /*-------------------------------------------------------------------------
3 * gistscan.h
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 *-------------------------------------------------------------------------
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 */