gistscan.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * gistscan.h
  4.  *   routines defined in access/gisr/gistscan.c
  5.  *
  6.  *
  7.  *
  8.  * rtscan.h,v 1.2 1995/06/14 00:06:58 jolly Exp
  9.  *
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef GISTSCAN_H
  13. #include "access/relscan.h"
  14. extern IndexScanDesc gistbeginscan(Relation r, bool fromEnd,
  15.   uint16 nkeys, ScanKey key);
  16. extern void gistrescan(IndexScanDesc s, bool fromEnd, ScanKey key);
  17. extern void gistmarkpos(IndexScanDesc s);
  18. extern void gistrestrpos(IndexScanDesc s);
  19. extern void gistendscan(IndexScanDesc s);
  20. extern void gistadjscans(Relation r, int op, BlockNumber blkno, OffsetNumber offnum);
  21. #endif  /* GISTSCAN_H */