diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-02 20:54:36 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-02 20:54:36 +0000 |
commit | de28dc9a04c4df5d711815b7a518501b43535a26 (patch) | |
tree | 1b93363ece14ded804195ff4a1c754a9b4a32306 /src/backend/nodes/copyfuncs.c | |
parent | 1940434f1ef8475c8b59bb8ff03e3f3a10cac6ae (diff) | |
download | postgresql-de28dc9a04c4df5d711815b7a518501b43535a26.tar.gz postgresql-de28dc9a04c4df5d711815b7a518501b43535a26.zip |
Portal and memory management infrastructure for extended query protocol.
Both plannable queries and utility commands are now always executed
within Portals, which have been revamped so that they can handle the
load (they used to be good only for single SELECT queries). Restructure
code to push command-completion-tag selection logic out of postgres.c,
so that it won't have to be duplicated between simple and extended queries.
initdb forced due to addition of a field to Query nodes.
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index cbf61970d47..4c773657fe4 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.248 2003/04/08 23:20:01 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.249 2003/05/02 20:54:34 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1476,6 +1476,7 @@ _copyQuery(Query *from) COPY_SCALAR_FIELD(commandType); COPY_SCALAR_FIELD(querySource); + COPY_SCALAR_FIELD(canSetTag); COPY_NODE_FIELD(utilityStmt); COPY_SCALAR_FIELD(resultRelation); COPY_NODE_FIELD(into); |