summaryrefslogtreecommitdiff
path: root/libpqpp/pq-connection.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2017-01-05 21:02:54 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2017-01-08 19:33:30 +0000
commitb67dd43bbdca2563ed29e84d37efc91b99f9a8bf (patch)
treed3041e23231691de56cc57e8ff5920d51eefe06b /libpqpp/pq-connection.cpp
parentAdd PQ specific command options to control page size and the use of bulk -v- ... (diff)
downloadlibdbpp-postgresql-b67dd43bbdca2563ed29e84d37efc91b99f9a8bf.tar.bz2
libdbpp-postgresql-b67dd43bbdca2563ed29e84d37efc91b99f9a8bf.tar.xz
libdbpp-postgresql-b67dd43bbdca2563ed29e84d37efc91b99f9a8bf.zip
Fix bug where prepared statement cache wasn't cleared on connection reset leading to random failure due to prepapred statements not existing
Diffstat (limited to 'libpqpp/pq-connection.cpp')
-rw-r--r--libpqpp/pq-connection.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libpqpp/pq-connection.cpp b/libpqpp/pq-connection.cpp
index 5b560a9..547923f 100644
--- a/libpqpp/pq-connection.cpp
+++ b/libpqpp/pq-connection.cpp
@@ -88,6 +88,7 @@ PQ::Connection::ping() const
if (inTx()) {
throw ConnectionError(conn);
}
+ preparedStatements.clear();
PQreset(conn);
if (PQstatus(conn) != CONNECTION_OK) {
throw ConnectionError(conn);