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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * planner.h
  4.  *   prototypes for planner.c.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: planner.h,v 1.11 1999/05/13 07:29:11 tgl Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PLANNER_H
  14. #define PLANNER_H
  15. /*
  16. */
  17. #include "nodes/parsenodes.h"
  18. #include "nodes/plannodes.h"
  19. #include "parser/parse_node.h"
  20. extern Plan *planner(Query *parse);
  21. extern Plan *union_planner(Query *parse);
  22. extern void pg_checkretval(Oid rettype, List *querytree_list);
  23. #endif  /* PLANNER_H */