mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
14 lines
414 B
Text
14 lines
414 B
Text
|
#
|
||
|
# MDEV-18496 Crash when Aria encryption is enabled but plugin not available
|
||
|
#
|
||
|
call mtr.add_suppression('Unknown key id 1. Can''t continue');
|
||
|
|
||
|
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);
|
||
|
error 192;
|
||
|
alter table t1 enable keys;
|
||
|
drop table t1;
|
||
|
set global aria_encrypt_tables= default;
|