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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pquery.h
  4.  *   prototypes for pquery.c.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: pquery.h,v 1.12.2.1 1999/07/30 17:07:20 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef PQUERY_H
  14. #define PQUERY_H
  15. #include "executor/execdesc.h"
  16. /* moved to execdesc.h
  17. extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree,
  18.   CommandDest dest);
  19. */
  20. extern EState *CreateExecutorState(void);
  21. extern void ProcessPortal(char *portalName, Query *parseTree,
  22.   Plan *plan, EState *state, TupleDesc attinfo,
  23.   CommandDest dest);
  24. extern void
  25. ProcessQuery(Query *parsetree, Plan *plan, CommandDest dest);
  26. #endif  /* pqueryIncluded */