Skip to content

Commit 25695fc

Browse files
Bug #22963951 REDUCE THE TIME OF LOOKING FOR
MLOG_CHECKPOINT DURING CRASH RECOVERY - Post-push fix
1 parent eba7cd0 commit 25695fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/log/log0recv.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3971,7 +3971,7 @@ recv_init_crash_recovery_spaces(void)
39713971
recv_spaces_t::iterator i
39723972
= recv_spaces.find(space);
39733973

3974-
if (i != recv_spaces.end()) {
3974+
if (i == recv_spaces.end()) {
39753975
recv_init_missing_mlog(recv_addr);
39763976
recv_addr->state = RECV_DISCARDED;
39773977
continue;

0 commit comments

Comments
 (0)