From 06eaf7232e9a920468c0f8d74dcf2fe8b555501c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:24:36 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/suite/maria/maria-recover.result | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 mysql-test/suite/maria/maria-recover.result (limited to 'mysql-test/suite/maria/maria-recover.result') diff --git a/mysql-test/suite/maria/maria-recover.result b/mysql-test/suite/maria/maria-recover.result new file mode 100644 index 00000000..7bb90cc0 --- /dev/null +++ b/mysql-test/suite/maria/maria-recover.result @@ -0,0 +1,39 @@ +select @@global.aria_recover_options; +@@global.aria_recover_options +BACKUP +set global aria_recover_options=off; +select @@global.aria_recover_options; +@@global.aria_recover_options +OFF +set global aria_recover_options=default; +select @@global.aria_recover_options; +@@global.aria_recover_options +BACKUP,QUICK +set global aria_recover_options=normal; +select @@global.aria_recover_options; +@@global.aria_recover_options +NORMAL +drop database if exists mysqltest; +create database mysqltest; +use mysqltest; +create table t1 (a varchar(1000), index(a)) engine=aria; +insert into t1 values("ThursdayMorningsMarket"); +flush table t1; +insert into t1 select concat(a,'b') from t1 limit 1; +set global aria_checkpoint_interval=1000; +select * from t_corrupted2; +a +ThursdayMorningsMarket +ThursdayMorningsMarketb +Warnings: +Error 145 Got error '145 "Table was marked as crashed and should be repaired"' for 't_corrupted2' +Warning 1034 1 client is using or hasn't closed the table properly +Error 176 Got error '176 "Read page with wrong checksum"' for 't_corrupted2.MAI' +Error 1034 Can't read indexpage from page: 1, error: 176 +select * from t_corrupted2; +a +ThursdayMorningsMarket +ThursdayMorningsMarketb +drop database mysqltest; +set global aria_recover_options=backup; +set global aria_checkpoint_interval=30; -- cgit v1.2.3