mirror of
https://github.com/postgres/postgres.git
synced 2025-04-20 00:42:27 +03:00
Reported-by: Michael Paquier Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz Backpatch-through: 12
25 lines
736 B
C
25 lines
736 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef GISTSCAN_H
|
|
#define GISTSCAN_H
|
|
|
|
#include "access/amapi.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);
|
|
|
|
#endif /* GISTSCAN_H */
|