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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * joininfo.h
  4.  *   prototypes for joininfo.c.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: joininfo.h,v 1.12 1999/05/25 22:43:08 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef JOININFO_H
  14. #define JOININFO_H
  15. #include "nodes/nodes.h"
  16. #include "nodes/relation.h"
  17. #include "nodes/primnodes.h"
  18. extern JoinInfo *joininfo_member(List *join_relids, List *joininfo_list);
  19. extern JoinInfo *find_joininfo_node(RelOptInfo *this_rel, List *join_relids);
  20. extern Var *other_join_clause_var(Var *var, Expr *clause);
  21. #endif  /* JOININFO_H */