Commit 136d3475 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

close[t:4708] Set the rollback node size to 4KB. Now it runs in less than one...

close[t:4708] Set the rollback node size to 4KB.  Now it runs in less than one second without valgrind. Closes #4708.

git-svn-id: file:///svn/toku/tokudb@41668 c7de825b-a66e-492c-adef-691d508d4ae1
parent 74b798fd
......@@ -23,6 +23,7 @@ int test_main (int argc, char * const argv[]) {
// cannot fit in the cachetable, but big enough such that
// we don't have cachet pressure
r = env->set_cachesize(env, 0, 4*cachesize, 1); CKERR(r);
r = env->set_lg_bsize(env, 4096); CKERR(r);
r = env->set_default_bt_compare(env, int64_dbt_cmp); CKERR(r);
r = env->open(env, ENVDIR, envflags, S_IRWXU+S_IRWXG+S_IRWXO); CKERR(r);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment