Commit 7ec0b718 authored by marko's avatar marko

branches/innodb+: btr_cur_search_to_nth_level(): Correct a merge

error.  In r2324, when changes were merged from branches/fts, the
assignment guess = NULL was accidentally removed after height--.
The assignment is in that place in branches/fts since r990.
parent 337a09c5
...@@ -688,6 +688,7 @@ retry_page_get: ...@@ -688,6 +688,7 @@ retry_page_get:
ut_ad(height > 0); ut_ad(height > 0);
height--; height--;
guess = NULL;
node_ptr = page_cur_get_rec(page_cursor); node_ptr = page_cur_get_rec(page_cursor);
......
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