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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * prep.h
  4.  *   prototypes for files in prep.c
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: prep.h,v 1.15 1999/06/06 17:38:10 tgl Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PREP_H
  14. #define PREP_H
  15. #include <nodes/plannodes.h>
  16. #include <nodes/parsenodes.h>
  17. /*
  18.  * prototypes for prepqual.c
  19.  */
  20. extern List *cnfify(Expr *qual, bool removeAndFlag);
  21. /*
  22.  * prototypes for preptlist.c
  23.  */
  24. extern List *preprocess_targetlist(List *tlist, int command_type,
  25.   Index result_relation, List *range_table);
  26. /*
  27.  * prototypes for prepunion.c
  28.  */
  29. extern List *find_all_inheritors(List *unexamined_relids,
  30. List *examined_relids);
  31. extern int first_inherit_rt_entry(List *rangetable);
  32. extern Append *plan_union_queries(Query *parse);
  33. extern Append *plan_inherit_queries(Query *parse, List *tlist, Index rt_index);
  34. #endif  /* PREP_H */