Commit 567fe595 authored by Bradley C. Kuszmaul's avatar Bradley C. Kuszmaul Committed by Yoni Fogel

Speed up test_rand_insert, it was gratuitously slow.

git-svn-id: file:///svn/toku/tokudb@16862 c7de825b-a66e-492c-adef-691d508d4ae1
parent ca0bc8f3
......@@ -89,7 +89,7 @@ test_main(int argc, char *argv[]) {
parse_args(argc, argv);
int i;
for (i = 1; i <= 2048; i += 1) {
for (i = 1; i <= 2048; i *= 2) {
test_rand_insert(i, 0);
}
......
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