Commit 36791ad6 authored by Sergei Petrunia's avatar Sergei Petrunia

Fix a typo

parent 5beb962e
......@@ -10968,8 +10968,8 @@ SEL_ARG::tree_delete(SEL_ARG *key)
uint new_weight= root->weight - (1 + (key->next_key_part?
key->next_key_part->weight : 0));
DBUG_ASSERT(root->weight > (1 + (key->next_key_part ?
key->next_key_part->weight : 0)));
DBUG_ASSERT(root->weight >= (1 + (key->next_key_part ?
key->next_key_part->weight : 0)));
/* Unlink from list */
if (key->prev)
......
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