diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-30 22:50:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-30 22:50:46 +0300 |
commit | 628f23ab62e342bb0b1dddedb563e7f13faf9528 (patch) | |
tree | 55c97c8453e2dc0036dfa65fb5eb268c886ada13 /plugins/Dbx_mdbx/src/libmdbx/test/config.cc | |
parent | 67cd8dbde997606b40bd7dc2712ccc4c66d8d06f (diff) |
merge with the final version of libmdbx
Diffstat (limited to 'plugins/Dbx_mdbx/src/libmdbx/test/config.cc')
-rw-r--r-- | plugins/Dbx_mdbx/src/libmdbx/test/config.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/Dbx_mdbx/src/libmdbx/test/config.cc b/plugins/Dbx_mdbx/src/libmdbx/test/config.cc index 2b9c6e5a0c..cbff68ce4e 100644 --- a/plugins/Dbx_mdbx/src/libmdbx/test/config.cc +++ b/plugins/Dbx_mdbx/src/libmdbx/test/config.cc @@ -278,8 +278,6 @@ void dump(const char *title) { logging::local_suffix indent(title); for (auto i = global::actors.begin(); i != global::actors.end(); ++i) { - const std::string tableid = - i->space_id ? "MAINDB" : ("SUB#" + std::to_string(i->space_id)); log_info("#%u, testcase %s, space_id/table %u\n", i->actor_id, testcase2str(i->testcase), i->space_id); indent.push(); @@ -326,6 +324,11 @@ void dump(const char *title) { else log_info("no-delay\n"); + if (i->params.inject_writefaultn) + log_info("inject-writefault on %u ops\n", i->params.inject_writefaultn); + else + log_info("no-inject-writefault\n"); + log_info("limits: readers %u, tables %u\n", i->params.max_readers, i->params.max_tables); |