summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/maria/encrypt-wrong-key.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/maria/encrypt-wrong-key.result')
-rw-r--r--mysql-test/suite/maria/encrypt-wrong-key.result16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/encrypt-wrong-key.result b/mysql-test/suite/maria/encrypt-wrong-key.result
new file mode 100644
index 00000000..4ff05795
--- /dev/null
+++ b/mysql-test/suite/maria/encrypt-wrong-key.result
@@ -0,0 +1,16 @@
+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;