From: Bruce Momjian Date: Fri, 4 Feb 2011 19:23:01 +0000 (-0500) Subject: In docs, move PQrequestCancel() deprecation mention up to match other X-Git-Tag: REL9_1_ALPHA4~267 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=b157a1d5554d6dfbd13fb605f08d51ce17532375;p=postgresql.git In docs, move PQrequestCancel() deprecation mention up to match other libpq doc mentions. --- 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); - Requests that the server abandon processing of the current - command. + PQrequestCancel is a deprecated variant of + PQcancel. int PQrequestCancel(PGconn *conn); - PQrequestCancel is a deprecated variant of - PQcancel. It operates directly on the + Requests that the server abandon processing of the current + command. It operates directly on the PGconn object, and in case of failure stores the error message in the PGconn object (whence it can be retrieved by PQerrorMessage). Although