diff options
Diffstat (limited to 'src/include/access/gistscan.h')
-rw-r--r-- | src/include/access/gistscan.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/include/access/gistscan.h b/src/include/access/gistscan.h index 9894e71b01b..46aa621631d 100644 --- a/src/include/access/gistscan.h +++ b/src/include/access/gistscan.h @@ -1,7 +1,7 @@ /*------------------------------------------------------------------------- * * gistscan.h-- - * routines defined in access/gisr/gistscan.c + * routines defined in access/gisr/gistscan.c * * * @@ -16,12 +16,13 @@ #include <storage/block.h> #include <utils/rel.h> -extern IndexScanDesc gistbeginscan(Relation r, bool fromEnd, - uint16 nkeys, ScanKey key); -extern void gistrescan(IndexScanDesc s, bool fromEnd, ScanKey key); -extern void gistmarkpos(IndexScanDesc s); -extern void gistrestrpos(IndexScanDesc s); -extern void gistendscan(IndexScanDesc s); -extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum); +extern IndexScanDesc +gistbeginscan(Relation r, bool fromEnd, + uint16 nkeys, ScanKey key); +extern void gistrescan(IndexScanDesc s, bool fromEnd, ScanKey key); +extern void gistmarkpos(IndexScanDesc s); +extern void gistrestrpos(IndexScanDesc s); +extern void gistendscan(IndexScanDesc s); +extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum); -#endif /* GISTSCAN_H */ +#endif /* GISTSCAN_H */ |