Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 88f528c

Browse files
committed
Update libpq PQcmdTuples() and PQcmdStatus() docs, remove const param
doc mention to match code and include files.
1 parent 02608cb commit 88f528c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/libpq.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.98 2002/11/03 01:30:46 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.99 2002/11/08 05:03:11 momjian Exp $
33
-->
44

55
<chapter id="libpq">
@@ -1210,7 +1210,7 @@ function is no longer actively supported.
12101210
Returns the command status string from the SQL command that
12111211
generated the <structname>PGresult</structname>.
12121212
<synopsis>
1213-
char * PQcmdStatus(const PGresult *res);
1213+
char * PQcmdStatus(PGresult *res);
12141214
</synopsis>
12151215
</para>
12161216
</listitem>
@@ -1220,7 +1220,7 @@ char * PQcmdStatus(const PGresult *res);
12201220
<function>PQcmdTuples</function>
12211221
Returns the number of rows affected by the SQL command.
12221222
<synopsis>
1223-
char * PQcmdTuples(const PGresult *res);
1223+
char * PQcmdTuples(PGresult *res);
12241224
</synopsis>
12251225
If the <acronym>SQL</acronym> command that generated the
12261226
<structname>PGresult</structname> was INSERT, UPDATE or DELETE, this returns a

0 commit comments

Comments
 (0)