summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-12-10 13:04:46 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2021-12-10 13:04:46 +0200
commit979b23d5bfb11bb698ea65c9468b374978737ec0 (patch)
tree184e271fb4c1c09ee5eeb3388cbf67d61a73b403
parent28b27b96d0d549378f815a05294797279aab7ec8 (diff)
downloadmariadb-git-979b23d5bfb11bb698ea65c9468b374978737ec0.tar.gz
Add forgotten changes to the parent commit
-rw-r--r--mysql-test/suite/innodb/t/log_corruption.test2
-rw-r--r--storage/innobase/log/log0recv.cc5
2 files changed, 4 insertions, 3 deletions
diff --git a/mysql-test/suite/innodb/t/log_corruption.test b/mysql-test/suite/innodb/t/log_corruption.test
index b9162be99db..4e9ea9fa698 100644
--- a/mysql-test/suite/innodb/t/log_corruption.test
+++ b/mysql-test/suite/innodb/t/log_corruption.test
@@ -16,7 +16,7 @@ call mtr.add_suppression("InnoDB: Log scan aborted at LSN");
call mtr.add_suppression("InnoDB: Missing MLOG_FILE_NAME or MLOG_FILE_DELETE before MLOG_CHECKPOINT for tablespace 42\\r?$");
call mtr.add_suppression("InnoDB: Obtaining redo log encryption key version 1 failed");
call mtr.add_suppression("InnoDB: Decrypting checkpoint failed");
-call mtr.add_suppression("InnoDB: Are you sure you are using the right ib_logfile0 to start up the database\\? Log sequence number in the ib_logfile0 is 1213964,");
+call mtr.add_suppression("InnoDB: Are you sure you are using the right ib_logfile0 to start up the database\\? The checkpoint is 1213964,");
call mtr.add_suppression("InnoDB: Log file .*ib_logfile1 is of different size 1048576 bytes than other log files 2097152 bytes!");
--enable_query_log
diff --git a/storage/innobase/log/log0recv.cc b/storage/innobase/log/log0recv.cc
index 6c4ad0d3c58..920b9a45570 100644
--- a/storage/innobase/log/log0recv.cc
+++ b/storage/innobase/log/log0recv.cc
@@ -4029,8 +4029,9 @@ completed:
" the right ib_logfile0"
" to start up the database?"
" The checkpoint is " LSN_PF
- ", less than the log sequence number"
- LSN_PF " in the system tablespace.",
+ ", less than the"
+ " log sequence number " LSN_PF
+ " in the system tablespace.",
checkpoint_lsn, flush_lsn);
}