2016-01-28 14:06:05 +02:00
|
|
|
call mtr.add_suppression("file_key_management");
|
|
|
|
call mtr.add_suppression("System key id 1 is missing");
|
|
|
|
call mtr.add_suppression("Unknown key id 1");
|
2023-03-16 17:24:12 +02:00
|
|
|
call mtr.add_suppression("Initialization of encryption failed.*");
|
2016-01-28 14:06:05 +02:00
|
|
|
CREATE TABLE t1 (i INT, KEY(i)) ENGINE=Aria;
|
|
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
repair table t1;
|
|
|
|
Table Op Msg_type Msg_text
|
2023-03-16 17:24:12 +02:00
|
|
|
test.t1 repair Error Initialization of encryption failed for ./test/t1.MAD
|
|
|
|
test.t1 repair error Corrupt
|
2016-01-28 14:06:05 +02:00
|
|
|
INSERT INTO t1 VALUES (2);
|
2023-03-16 17:24:12 +02:00
|
|
|
ERROR HY000: Initialization of encryption failed for ./test/t1.MAD
|
2016-01-28 14:06:05 +02:00
|
|
|
select * from t1;
|
2023-03-16 17:24:12 +02:00
|
|
|
i
|
|
|
|
1
|
2016-01-28 14:06:05 +02:00
|
|
|
drop table t1;
|