mariadb/mysql-test/suite/maria/encrypt-wrong-key.result
Monty 1ef22e28ad MDEV-26258 Various crashes/asserts/corruptions when Aria encryption is enabled/used, but the encryption plugin is not loaded
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.
2023-05-02 23:37:10 +03:00

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;