]> granicus.if.org Git - postgresql/commitdiff
In docs, move PQrequestCancel() deprecation mention up to match other
authorBruce Momjian <bruce@momjian.us>
Fri, 4 Feb 2011 19:23:01 +0000 (14:23 -0500)
committerBruce Momjian <bruce@momjian.us>
Fri, 4 Feb 2011 19:23:35 +0000 (14:23 -0500)
libpq doc mentions.

doc/src/sgml/libpq.sgml

index ab09f35c9d7fd45f1947dcbc1f0afda27a2fd53e..e78d70828e17eaafcd57f7bec180e7ec5ff89746 100644 (file)
@@ -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