diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-05 21:02:54 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-08 19:33:30 +0000 |
commit | 0dd5980eef6fee02ff9dc61bb4c20b6f3670a93c (patch) | |
tree | cc8031fc3d0c1c7c63234da3cdcdc54a2d05c46b /libpqpp/pq-connection.h | |
parent | Add PQ specific command options to control page size and the use of bulk -v- ... (diff) | |
download | libdbpp-postgresql-0dd5980eef6fee02ff9dc61bb4c20b6f3670a93c.tar.bz2 libdbpp-postgresql-0dd5980eef6fee02ff9dc61bb4c20b6f3670a93c.tar.xz libdbpp-postgresql-0dd5980eef6fee02ff9dc61bb4c20b6f3670a93c.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.h')
-rw-r--r-- | libpqpp/pq-connection.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpqpp/pq-connection.h b/libpqpp/pq-connection.h index d5cbde6..1659c13 100644 --- a/libpqpp/pq-connection.h +++ b/libpqpp/pq-connection.h @@ -43,7 +43,7 @@ namespace PQ { void checkResultFree(PGresult * res, int expected, int alternative = -1) const; PGconn * conn; - PreparedStatements preparedStatements; + mutable PreparedStatements preparedStatements; private: static bool checkResultInt(PGresult * res, int expected, int alternative); |