diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-08 18:16:37 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-08 18:16:37 +0000 |
| commit | c0a8c3ac13f84602a46ba25b9a2fd5427514f61a (patch) | |
| tree | f321719251471a05a768117f35010d28076f938a /src/include/tcop/pquery.h | |
| parent | 5e7a5c9511b65d483639dd3f7dfab7b9e92c3433 (diff) | |
| download | postgresql-c0a8c3ac13f84602a46ba25b9a2fd5427514f61a.tar.gz | |
Update 3.0 protocol support to match recent agreements about how to
handle multiple 'formats' for data I/O. Restructure CommandDest and
DestReceiver stuff one more time (it's finally starting to look a bit
clean though). Code now matches latest 3.0 protocol document as far
as message formats go --- but there is no support for binary I/O yet.
Diffstat (limited to 'src/include/tcop/pquery.h')
| -rw-r--r-- | src/include/tcop/pquery.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/tcop/pquery.h b/src/include/tcop/pquery.h index d9d6a6221d..ff9cc9d76a 100644 --- a/src/include/tcop/pquery.h +++ b/src/include/tcop/pquery.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pquery.h,v 1.26 2003/05/06 20:26:28 tgl Exp $ + * $Id: pquery.h,v 1.27 2003/05/08 18:16:37 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,6 @@ extern void ProcessQuery(Query *parsetree, Plan *plan, ParamListInfo params, - const char *portalName, DestReceiver *dest, char *completionTag); @@ -28,6 +27,9 @@ extern PortalStrategy ChoosePortalStrategy(List *parseTrees); extern void PortalStart(Portal portal, ParamListInfo params); +extern void PortalSetResultFormat(Portal portal, int nFormats, + int16 *formats); + extern bool PortalRun(Portal portal, long count, DestReceiver *dest, DestReceiver *altdest, char *completionTag); |
