1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Repair error in description of nonblocking usage of PQgetCopyData().

Per Volkan Yazici.
This commit is contained in:
Tom Lane 2005-06-09 19:08:47 +00:00
parent 39c9398956
commit fe88b2043a

View File

@ -1,5 +1,5 @@
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.141.2.1 2003/11/12 20:05:14 petere Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/libpq.sgml,v 1.141.2.2 2005/06/09 19:08:47 tgl Exp $
--> -->
<chapter id="libpq"> <chapter id="libpq">
@ -2917,8 +2917,8 @@ A result of -2 indicates that an error occurred (consult
When <parameter>async</> is true (not zero), <function>PQgetCopyData</> When <parameter>async</> is true (not zero), <function>PQgetCopyData</>
will not block waiting for input; it will return zero if the <command>COPY</command> is still will not block waiting for input; it will return zero if the <command>COPY</command> is still
in progress but no complete row is available. (In this case wait for in progress but no complete row is available. (In this case wait for
read-ready before trying again; it does not matter whether you call read-ready and then call <function>PQconsumeInput</> before calling
<function>PQconsumeInput</>.) When <parameter>async</> is <function>PQgetCopyData</> again.) When <parameter>async</> is
false (zero), <function>PQgetCopyData</> will block until data is available false (zero), <function>PQgetCopyData</> will block until data is available
or the operation completes. or the operation completes.
</para> </para>