aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-03-28 11:21:46 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-03-28 11:21:46 +0200
commitb6f2b4e1e924965d55e656992a48cc3cd19e64a2 (patch)
tree79889e297996eaf92a57da8380c54f1fcfc7fa7d /common
parent6dd8138b765b8533958bc23d39e95a17377d4f75 (diff)
Add schema creation flag to create_database()
Diffstat (limited to 'common')
-rw-r--r--common/threads/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/threads/driver.cxx b/common/threads/driver.cxx
index 212ff60..9aab254 100644
--- a/common/threads/driver.cxx
+++ b/common/threads/driver.cxx
@@ -114,7 +114,7 @@ struct task
void
test (int argc, char* argv[], size_t max_connections)
{
- auto_ptr<database> db (create_database (argc, argv, max_connections));
+ auto_ptr<database> db (create_database (argc, argv, true, max_connections));
vector<details::shared_ptr<details::thread> > threads;
vector<details::shared_ptr<task> > tasks;