gistscan.h 736 B

123456789101112131415161718192021222324
  1. /*-------------------------------------------------------------------------
  2. *
  3. * gistscan.h
  4. * routines defined in access/gist/gistscan.c
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/access/gistscan.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef GISTSCAN_H
  15. #define GISTSCAN_H
  16. #include "access/amapi.h"
  17. extern IndexScanDesc gistbeginscan(Relation r, int nkeys, int norderbys);
  18. extern void gistrescan(IndexScanDesc scan, ScanKey key, int nkeys,
  19. ScanKey orderbys, int norderbys);
  20. extern void gistendscan(IndexScanDesc scan);
  21. #endif /* GISTSCAN_H */