mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
5099d6de61
when deinitializing encryption plugins, disable server-wide encryption only if this plugin is the one that is used for encryption.
7 lines
385 B
Text
7 lines
385 B
Text
call mtr.add_suppression('debug.key.management');
|
|
install soname 'debug_key_management';
|
|
ERROR HY000: Can't initialize function 'debug_key_management'; Plugin initialization function failed.
|
|
create table t1 (a varchar(255)) engine=innodb encrypted=yes;
|
|
create table t2 (a varchar(255)) engine=innodb;
|
|
create table t3 (a varchar(255)) engine=innodb encrypted=no;
|
|
drop table t1, t2, t3;
|