aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-02-04 14:23:01 -0500
committerBruce Momjian <bruce@momjian.us>2011-02-04 14:23:35 -0500
commitb157a1d5554d6dfbd13fb605f08d51ce17532375 (patch)
treedd584c48ee0db6c6923216499ead9e90cad4bd1e /doc/src
parent8201aea90c2b171808c65836fcce4f29b22a9dbb (diff)
downloadpostgresql-b157a1d5554d6dfbd13fb605f08d51ce17532375.tar.gz
postgresql-b157a1d5554d6dfbd13fb605f08d51ce17532375.zip
In docs, move PQrequestCancel() deprecation mention up to match other
libpq doc mentions.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/libpq.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index ab09f35c9d7..e78d70828e1 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -4172,16 +4172,16 @@ int PQcancel(PGcancel *cancel, char *errbuf, int errbufsize);
<listitem>
<para>
- Requests that the server abandon processing of the current
- command.
+ <function>PQrequestCancel</function> is a deprecated variant of
+ <function>PQcancel</function>.
<synopsis>
int PQrequestCancel(PGconn *conn);
</synopsis>
</para>
<para>
- <function>PQrequestCancel</function> is a deprecated variant of
- <function>PQcancel</function>. It operates directly on the
+ Requests that the server abandon processing of the current
+ command. It operates directly on the
<structname>PGconn</> object, and in case of failure stores the
error message in the <structname>PGconn</> object (whence it can
be retrieved by <function>PQerrorMessage</function>). Although