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 /doc/src/sgml/ref/postgres-ref.sgml | |
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 'doc/src/sgml/ref/postgres-ref.sgml')
-rw-r--r-- | doc/src/sgml/ref/postgres-ref.sgml | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/doc/src/sgml/ref/postgres-ref.sgml b/doc/src/sgml/ref/postgres-ref.sgml index 6532cc1c894..e09c523b1ab 100644 --- a/doc/src/sgml/ref/postgres-ref.sgml +++ b/doc/src/sgml/ref/postgres-ref.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/postgres-ref.sgml,v 1.32 2003/03/25 16:15:43 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/postgres-ref.sgml,v 1.33 2003/05/02 20:54:33 tgl Exp $ PostgreSQL documentation --> @@ -28,7 +28,6 @@ PostgreSQL documentation <arg>-E</arg> <arg>-f<group choice="plain"><arg>s</arg><arg>i</arg><arg>t</arg><arg>n</arg><arg>m</arg><arg>h</arg></group></arg> <arg>-F</arg> - <arg>-i</arg> <arg>-N</arg> <arg>-o <replaceable>filename</replaceable></arg> <arg>-O</arg> @@ -52,7 +51,6 @@ PostgreSQL documentation <arg>-e</arg> <arg>-f<group choice="plain"><arg>s</arg><arg>i</arg><arg>t</arg><arg>n</arg><arg>m</arg><arg>h</arg></group></arg> <arg>-F</arg> - <arg>-i</arg> <arg>-o <replaceable>filename</replaceable></arg> <arg>-O</arg> <arg>-p <replaceable>database</replaceable></arg> @@ -282,15 +280,6 @@ PostgreSQL documentation </varlistentry> <varlistentry> - <term><option>-i</option></term> - <listitem> - <para> - Prevents query execution, but shows the plan tree. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><option>-O</option></term> <listitem> <para> |