aboutsummaryrefslogtreecommitdiff
path: root/common/threads/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'common/threads/driver.cxx')
-rw-r--r--common/threads/driver.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/threads/driver.cxx b/common/threads/driver.cxx
index 539db5f..9703e29 100644
--- a/common/threads/driver.cxx
+++ b/common/threads/driver.cxx
@@ -71,7 +71,7 @@ struct task
typedef odb::result<object> result;
transaction t (db_.begin_transaction ());
- result r (db_.query<object> (query::str == "another value"));
+ result r (db_.query<object> (query::str == "another value", false));
bool found (false);
for (result::iterator i (r.begin ()); i != r.end (); ++i)
@@ -136,7 +136,6 @@ test (int argc, char* argv[], size_t max_connections)
transaction t (db->begin_transaction ());
result r (db->query<object> ());
- r.cache ();
for (result::iterator i (r.begin ()); i != r.end (); ++i)
db->erase<object> (i->id_);