mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
branches/innodb+: ibuf_merge_or_delete_for_page(): Replace a double if
with a single functionally equivalent if.
This commit is contained in:
parent
a0030fcf54
commit
45675cb728
1 changed files with 5 additions and 5 deletions
|
@ -3990,11 +3990,11 @@ ibuf_merge_or_delete_for_page(
|
|||
}
|
||||
mtr_commit(&mtr);
|
||||
}
|
||||
} else if (block) {
|
||||
if (ibuf_fixed_addr_page(space, zip_size, page_no)
|
||||
|| fsp_descr_page(zip_size, page_no)) {
|
||||
return;
|
||||
}
|
||||
} else if (block
|
||||
&& (ibuf_fixed_addr_page(space, zip_size, page_no)
|
||||
|| fsp_descr_page(zip_size, page_no))) {
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
ibuf_enter();
|
||||
|
|
Loading…
Reference in a new issue