Commit 61f5e13c authored by Bruce Momjian's avatar Bruce Momjian

! * Users doing non-blocking connections need to handle the reset

!        * themselves, they'll need to check the connection status if we
!        * return an error.

Alfred Perlstein
parent 936b27fa
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.94 2000/04/12 17:17:14 momjian Exp $ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.95 2000/05/25 19:09:55 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1587,7 +1587,15 @@ PQendcopy(PGconn *conn) ...@@ -1587,7 +1587,15 @@ PQendcopy(PGconn *conn)
DONOTICE(conn, "PQendcopy: resetting connection\n"); DONOTICE(conn, "PQendcopy: resetting connection\n");
PQreset(conn); /*
* Users doing non-blocking connections need to handle the reset
* themselves, they'll need to check the connection status if we
* return an error.
*/
if (pqIsnonblocking(conn))
PQresetStart(conn);
else
PQreset(conn);
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment