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/include/executor | |
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/include/executor')
-rw-r--r-- | src/include/executor/spi_priv.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/include/executor/spi_priv.h b/src/include/executor/spi_priv.h index 6a2acd7b21c..5dd0ff2a6e3 100644 --- a/src/include/executor/spi_priv.h +++ b/src/include/executor/spi_priv.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: spi_priv.h,v 1.13 2002/10/14 23:49:20 tgl Exp $ + * $Id: spi_priv.h,v 1.14 2003/05/02 20:54:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,8 +36,6 @@ typedef struct /* Argument types, if a prepared plan */ int nargs; Oid *argtypes; - /* Command type of last original parsetree */ - CmdType origCmdType; } _SPI_plan; |