Commit e9d150b1 authored by Rich Prohaska's avatar Rich Prohaska

changed the tree FANOUT from 16 to 4 and brt-test found a path through the...

changed the tree FANOUT from 16 to 4 and brt-test found a path through the cachetable flush function that followed the wrong linked list.



git-svn-id: file:///svn/tokudb@166 c7de825b-a66e-492c-adef-691d508d4ae1
parent 4e52d044
...@@ -386,7 +386,7 @@ int cachefile_flush (CACHEFILE cf) { ...@@ -386,7 +386,7 @@ int cachefile_flush (CACHEFILE cf) {
flush_and_remove(t, p, 1); // Must be careful, since flush_and_remove kills the linked list. flush_and_remove(t, p, 1); // Must be careful, since flush_and_remove kills the linked list.
goto again; goto again;
} else { } else {
p=p->next; p=p->hash_chain;
} }
} }
} }
......
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