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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * keys.h
  4.  *   prototypes for keys.c.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: keys.h,v 1.15 1999/05/25 22:43:09 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef KEYS_H
  14. #define KEYS_H
  15. #include "nodes/nodes.h"
  16. #include "nodes/relation.h"
  17. extern bool match_indexkey_operand(int indexkey, Var *operand, RelOptInfo *rel);
  18. extern Var *extract_join_key(JoinKey *jk, int outer_or_inner);
  19. extern bool pathkeys_match(List *keys1, List *keys2, int *better_key);
  20. extern List *collect_index_pathkeys(int *index_keys, List *tlist);
  21. #endif  /* KEYS_H */