mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
e4a0dbfb4a
Added the condition in innochecksum tool to check page id mismatch. This could catch the write corruption caused by InnoDB. Added the debug insert inside fil_io() to check whether it writes the page to wrong offset.
6 lines
198 B
Text
6 lines
198 B
Text
# Set the environmental variables
|
|
create table t1(f1 int not null)engine=innodb;
|
|
insert into t1 values(1), (2), (3);
|
|
# Change the page offset
|
|
FOUND 1 /page id mismatch/ in result.log
|
|
drop table t1;
|