diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-02-28 17:22:24 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-02-28 17:22:24 +0000 |
commit | 87006ad34dd349a7dcb5eee93eab4be214d2e875 (patch) | |
tree | fd0245365b8c9ba3dbb7fe92e330f0fecec42651 /libpqpp/unittests | |
parent | Prepare statement upfront during construction (diff) | |
download | libdbpp-postgresql-87006ad34dd349a7dcb5eee93eab4be214d2e875.tar.bz2 libdbpp-postgresql-87006ad34dd349a7dcb5eee93eab4be214d2e875.tar.xz libdbpp-postgresql-87006ad34dd349a7dcb5eee93eab4be214d2e875.zip |
Actually, don't prepare statement upfront during construction as it might not be valid (e.g. uncreated temp tables)
Diffstat (limited to 'libpqpp/unittests')
-rw-r--r-- | libpqpp/unittests/testpq.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpqpp/unittests/testpq.cpp b/libpqpp/unittests/testpq.cpp index 088910d..1905192 100644 --- a/libpqpp/unittests/testpq.cpp +++ b/libpqpp/unittests/testpq.cpp @@ -271,7 +271,7 @@ BOOST_AUTO_TEST_CASE( statementReuse ) BOOST_REQUIRE_EQUAL(pqconn->preparedStatements.size(), 1); for (int y = 0; y < 4; y += 1) { auto m1 = ro->modify("INSERT INTO test(id) VALUES(?)"); - BOOST_REQUIRE_EQUAL(pqconn->preparedStatements.size(), 2); + BOOST_REQUIRE_EQUAL(pqconn->preparedStatements.size(), y == 0 ? 1 : 2); for (int x = 0; x < 4; x += 1) { m1->bindParamI(0, x); m1->execute(); |