summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/encrypt-no-key.test
blob: 1157263ca79e13c9fd14bd4ce80ac1aa9f4d752a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# MDEV-18496 Crash when Aria encryption is enabled but plugin not available
#
call mtr.add_suppression('Unknown key id 1');
call mtr.add_suppression('try to repair it');
call mtr.add_suppression('Index is corrupted');

set global aria_encrypt_tables= 1;
create table t1 (pk int primary key, a int, key(a)) engine=aria transactional=1;
alter table t1 disable keys;
insert into t1 values  (1,1);
--replace_result \\ /
--replace_regex /for .*test/for test/
--error 192
alter table t1 enable keys;
--replace_result \\ /
--replace_regex /for .*test/for test/
repair table t1 use_frm;
drop table t1;
set global aria_encrypt_tables= default;