OSDN Git Service

pgindent run.
[pg-rex/syncrep.git] / src / include / tcop / pquery.h
1 /*-------------------------------------------------------------------------
2  *
3  * pquery.h
4  *        prototypes for pquery.c.
5  *
6  *
7  * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: pquery.h,v 1.22 2002/09/04 20:31:45 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef PQUERY_H
15 #define PQUERY_H
16
17 #include "executor/execdesc.h"
18 #include "utils/portal.h"
19
20
21 extern void ProcessQuery(Query *parsetree, Plan *plan, CommandDest dest,
22                          char *completionTag);
23
24 extern EState *CreateExecutorState(void);
25
26 extern Portal PreparePortal(char *portalName);
27
28 #endif   /* PQUERY_H */