diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-01 14:01:12 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-04-01 14:01:12 +0100 |
commit | 61e10b941ea2ea9df0234eceed90a5f93f8f5f32 (patch) | |
tree | 268128bdba7c8fded9f1f48d051b3070e9d37a6d /libpqpp/unittests/testpq.cpp | |
parent | Transactionless cursor selects (diff) | |
download | libdbpp-postgresql-61e10b941ea2ea9df0234eceed90a5f93f8f5f32.tar.bz2 libdbpp-postgresql-61e10b941ea2ea9df0234eceed90a5f93f8f5f32.tar.xz libdbpp-postgresql-61e10b941ea2ea9df0234eceed90a5f93f8f5f32.zip |
Updated compile flags
Diffstat (limited to 'libpqpp/unittests/testpq.cpp')
-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 cfe7b11..56ab20f 100644 --- a/libpqpp/unittests/testpq.cpp +++ b/libpqpp/unittests/testpq.cpp @@ -463,7 +463,7 @@ BOOST_AUTO_TEST_CASE( largeBlob ) ro->execute("TRUNCATE TABLE blobtest"); AdHoc::FileUtils::MemMap f("/proc/self/exe"); DB::Blob blob(f.data, f.getStat().st_size); - BOOST_REQUIRE(blob.len > 200000); // Just assert the mapped file is actually "large" + BOOST_REQUIRE(blob.len > 140000); // Just assert the mapped file is actually "large" auto ins = ro->modify("INSERT INTO blobtest(data) VALUES(?)"); ins->bindParamBLOB(0, blob); ins->execute(); |