diff options
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 68a848ab5bd..7418b152dc7 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -1240,8 +1240,7 @@ PQsendQueryStart(PGconn *conn) } /* initialize async result-accumulation state */ - conn->result = NULL; - conn->curTuple = NULL; + pqClearAsyncResult(conn); /* ready to send command message */ return true; |