]> granicus.if.org Git - postgresql/blob - src/include/commands/prepare.h
pgindent run.
[postgresql] / src / include / commands / prepare.h
1 /*-------------------------------------------------------------------------
2  *
3  * prepare.h
4  *        PREPARE, EXECUTE and DEALLOCATE command prototypes
5  *
6  *
7  * Copyright (c) 2002, PostgreSQL Global Development Group
8  *
9  * $Id: prepare.h,v 1.2 2002/09/04 20:31:42 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13
14 #ifndef PREPARE_H
15 #define PREPARE_H
16
17 #include "nodes/parsenodes.h"
18 #include "tcop/dest.h"
19
20
21 extern void PrepareQuery(PrepareStmt *stmt);
22
23 extern void ExecuteQuery(ExecuteStmt *stmt, CommandDest outputDest);
24
25 extern void DeallocateQuery(DeallocateStmt *stmt);
26
27 extern List *FetchQueryParams(const char *plan_name);
28
29 #endif   /* PREPARE_H */