Skip to content

Commit

Permalink
MDEV-25948 fixup: Demote a warning to a note
Browse files Browse the repository at this point in the history
buf_dblwr_t::recover(): Issue a note, not a warning, about
pages whose FIL_PAGE_LSN is in the future. This was supposed to be
part of commit 762bcb8 (MDEV-25948)
but had been accidentally omitted.
  • Loading branch information
dr-m committed Jun 24, 2021
1 parent 60ed479 commit e329dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/buf/buf0dblwr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ void buf_dblwr_t::recover()

if (recv_sys.scanned_lsn < lsn)
{
ib::warn() << "Ignoring a doublewrite copy of page " << page_id
ib::info() << "Ignoring a doublewrite copy of page " << page_id
<< " with future log sequence number " << lsn;
continue;
}
Expand Down

0 comments on commit e329dc8

Please sign in to comment.