Commit 7712208b authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel
Browse files

[t:4545], fix assert in brt_search_node

git-svn-id: file:///svn/toku/tokudb@40193 c7de825b-a66e-492c-adef-691d508d4ae1
parent 138dfded
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5419,7 +5419,7 @@ brt_search_node(
    )
{   int r = 0;
    // assert that we got a valid child_to_search
    assert(child_to_search >= 0 || child_to_search < node->n_children);
    assert(child_to_search >= 0 && child_to_search < node->n_children);
    //
    // At this point, we must have the necessary partition available to continue the search
    //