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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * iqual.h
  4.  *   Index scan key qualification definitions.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: iqual.h,v 1.11.2.1 1999/07/30 18:26:59 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef IQUAL_H
  14. #define IQUAL_H
  15. #include "access/itup.h"
  16. #include "access/skey.h"
  17. /* ----------------
  18.  * index tuple qualification support
  19.  * ----------------
  20.  */
  21. extern int NIndexTupleProcessed;
  22. extern bool index_keytest(IndexTuple tuple, TupleDesc tupdesc,
  23.   int scanKeySize, ScanKey key);
  24. #endif  /* IQUAL_H */