1call mtr.add_suppression('Unknown key id 1. Can''t continue');
2set global aria_encrypt_tables= 1;
3create table t1 (pk int primary key, a int, key(a)) engine=aria transactional=1;
4alter table t1 disable keys;
5insert into t1 values  (1,1);
6alter table t1 enable keys;
7ERROR HY000: Unknown key id 1. Can't continue!
8repair table t1 use_frm;
9Table	Op	Msg_type	Msg_text
10test.t1	repair	warning	Number of rows changed from 0 to 1
11test.t1	repair	Error	Unknown key id 1. Can't continue!
12test.t1	repair	Error	Unknown key id 1. Can't continue!
13test.t1	repair	status	OK
14drop table t1;
15set global aria_encrypt_tables= default;
16