mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
1ef22e28ad
The reason for the MDEV reported failures is that the tests are enabling encryption for Aria but not providing any encryption keys. Fixed by checking if encryption keys exists before creating the table. Other things: - maria.encrypt_wrong-key changed as we now get the error on CREATE instead during insert.
16 lines
569 B
Text
16 lines
569 B
Text
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");
|
|
call mtr.add_suppression("Initialization of encryption failed.*");
|
|
CREATE TABLE t1 (i INT, KEY(i)) ENGINE=Aria;
|
|
INSERT INTO t1 VALUES (1);
|
|
repair table t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 repair Error Initialization of encryption failed for ./test/t1.MAD
|
|
test.t1 repair error Corrupt
|
|
INSERT INTO t1 VALUES (2);
|
|
ERROR HY000: Initialization of encryption failed for ./test/t1.MAD
|
|
select * from t1;
|
|
i
|
|
1
|
|
drop table t1;
|