Commit 45675cb7 authored by marko's avatar marko

branches/innodb+: ibuf_merge_or_delete_for_page(): Replace a double if

with a single functionally equivalent if.
parent a0030fcf
...@@ -3990,12 +3990,12 @@ ibuf_merge_or_delete_for_page( ...@@ -3990,12 +3990,12 @@ ibuf_merge_or_delete_for_page(
} }
mtr_commit(&mtr); mtr_commit(&mtr);
} }
} else if (block) { } else if (block
if (ibuf_fixed_addr_page(space, zip_size, page_no) && (ibuf_fixed_addr_page(space, zip_size, page_no)
|| fsp_descr_page(zip_size, page_no)) { || fsp_descr_page(zip_size, page_no))) {
return; return;
} }
}
ibuf_enter(); ibuf_enter();
......
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