Commit af69506d authored by Marko Mäkelä's avatar Marko Mäkelä

Merge fixup encryption.corrupted_during_recovery

Correctly merge 1ac03fd9
(superceding a52cd4ae).

Fixes up the merge commit fd0b47f9
parent c8d52c89
...@@ -9,7 +9,7 @@ INSERT INTO t2 VALUES(2); ...@@ -9,7 +9,7 @@ INSERT INTO t2 VALUES(2);
SELECT * FROM t1; SELECT * FROM t1;
ERROR 42000: Unknown storage engine 'InnoDB' ERROR 42000: Unknown storage engine 'InnoDB'
SELECT * FROM t1; SELECT * FROM t1;
ERROR HY000: Table test/t1 is corrupted. Please drop the table and recreate. Got one of the listed errors
SELECT * FROM t2; SELECT * FROM t2;
a a
2 2
......
...@@ -60,7 +60,7 @@ call mtr.add_suppression("Table .*t1.* is corrupted. Please drop the table and r ...@@ -60,7 +60,7 @@ call mtr.add_suppression("Table .*t1.* is corrupted. Please drop the table and r
let $restart_parameters=--innodb_force_recovery=1 --skip-innodb-buffer-pool-load-at-startup; let $restart_parameters=--innodb_force_recovery=1 --skip-innodb-buffer-pool-load-at-startup;
--source include/restart_mysqld.inc --source include/restart_mysqld.inc
--error ER_TABLE_CORRUPT --error ER_NO_SUCH_TABLE_IN_ENGINE,ER_TABLE_CORRUPT
SELECT * FROM t1; SELECT * FROM t1;
SELECT * FROM t2; SELECT * FROM t2;
CHECK TABLE t2; CHECK TABLE t2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment