Commit 4c711ed0 authored by Yoni Fogel's avatar Yoni Fogel

Addresses #855, #856. Invalidates cursor on a failed toku_omt_find

git-svn-id: file:///svn/tokudb@4337 c7de825b-a66e-492c-adef-691d508d4ae1
parent ecfb88b9
...@@ -565,6 +565,8 @@ int toku_omt_find(OMT V, int (*h)(OMTVALUE, void*extra), void*extra, int directi ...@@ -565,6 +565,8 @@ int toku_omt_find(OMT V, int (*h)(OMTVALUE, void*extra), void*extra, int directi
if (c && r==0) { if (c && r==0) {
associate(V,c); associate(V,c);
c->index=*index; c->index=*index;
} else {
toku_omt_cursor_invalidate(c);
} }
return r; return 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