Commit 890cd67a authored by marko's avatar marko

branches/innodb+: row_purge_remove_sec_if_poss_low(): Apply De Morgan's rule

to eliminate double negation from an assertion.
parent 4b06a4b1
......@@ -322,7 +322,7 @@ row_purge_remove_sec_if_poss_low(
btr_cur = btr_pcur_get_btr_cur(&pcur);
leaf_in_buf_pool = btr_cur->leaf_in_buf_pool;
ut_a(!(found && !leaf_in_buf_pool));
ut_a(!found || leaf_in_buf_pool);
btr_pcur_close(&pcur);
mtr_commit(&mtr);
......
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