diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-12-28 11:02:10 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-12-28 11:02:10 -0500 |
commit | 81a530a65eb867a366828daa7a8757727214ecad (patch) | |
tree | d3e9c175705761816820edea0c906e738494aaab /doc/src | |
parent | b4d3792daa6032016325ae50e80dfae12eb95820 (diff) | |
download | postgresql-81a530a65eb867a366828daa7a8757727214ecad.tar.gz postgresql-81a530a65eb867a366828daa7a8757727214ecad.zip |
Fix ill-advised placement of PGRES_COPY_BOTH enum value.
It must be added at the end of the ExecStatusType enum to avoid ABI
breakage compared to previous libpq versions. Noted by Magnus.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index 7e86859e252..da7b820db6d 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -2196,16 +2196,6 @@ ExecStatusType PQresultStatus(const PGresult *res); </listitem> </varlistentry> - <varlistentry id="libpq-pgres-copy-both"> - <term><literal>PGRES_COPY_BOTH</literal></term> - <listitem> - <para> - Copy In/Out (to and from server) data transfer started. This is - currently used only for streaming replication. - </para> - </listitem> - </varlistentry> - <varlistentry id="libpq-pgres-bad-response"> <term><literal>PGRES_BAD_RESPONSE</literal></term> <listitem> @@ -2232,6 +2222,16 @@ ExecStatusType PQresultStatus(const PGresult *res); </para> </listitem> </varlistentry> + + <varlistentry id="libpq-pgres-copy-both"> + <term><literal>PGRES_COPY_BOTH</literal></term> + <listitem> + <para> + Copy In/Out (to and from server) data transfer started. This is + currently used only for streaming replication. + </para> + </listitem> + </varlistentry> </variablelist> If the result status is <literal>PGRES_TUPLES_OK</literal>, then |