| /*------------------------------------------------------------------------- | |
| * | |
| * gistscan.h | |
| * routines defined in access/gist/gistscan.c | |
| * | |
| * | |
| * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group | |
| * Portions Copyright (c) 1994, Regents of the University of California | |
| * | |
| * src/include/access/gistscan.h | |
| * | |
| *------------------------------------------------------------------------- | |
| */ | |
| extern IndexScanDesc gistbeginscan(Relation r, int nkeys, int norderbys); | |
| extern void gistrescan(IndexScanDesc scan, ScanKey key, int nkeys, | |
| ScanKey orderbys, int norderbys); | |
| extern void gistendscan(IndexScanDesc scan); | |