diff options
Diffstat (limited to 'storage/innobase/log/log0recv.cc')
-rw-r--r-- | storage/innobase/log/log0recv.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/log/log0recv.cc b/storage/innobase/log/log0recv.cc index eb34fd8ede9..4f48006ff8b 100644 --- a/storage/innobase/log/log0recv.cc +++ b/storage/innobase/log/log0recv.cc @@ -688,7 +688,7 @@ public: continue; } if (buf_block_t* block = buf_page_get_low( - i.first, 0, RW_X_LATCH, nullptr, + i.first, 0, RW_X_LATCH, BUF_GET_IF_IN_POOL, __FILE__, __LINE__, &mtr, nullptr, false)) { if (UNIV_LIKELY_NULL(block->page.zip.data)) { @@ -2700,7 +2700,7 @@ next_page: mtr.start(); mtr.set_log_mode(MTR_LOG_NO_REDO); if (buf_block_t *block= buf_page_get_low(page_id, 0, RW_X_LATCH, - nullptr, BUF_GET_IF_IN_POOL, + BUF_GET_IF_IN_POOL, __FILE__, __LINE__, &mtr, nullptr, false)) { |