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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * var.h
  4.  *   prototypes for var.c.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: var.h,v 1.7 1999/02/13 23:21:54 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef VAR_H
  14. #define VAR_H
  15. #include "nodes/nodes.h"
  16. #include "nodes/primnodes.h"
  17. extern List *pull_varnos(Node *me);
  18. extern bool contain_var_clause(Node *clause);
  19. extern List *pull_var_clause(Node *clause);
  20. extern bool var_equal(Var *var1, Var *var2);
  21. #endif  /* VAR_H */