mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
14 lines
407 B
Text
14 lines
407 B
Text
--source include/have_innodb.inc
|
|
--source include/have_file_key_management_plugin.inc
|
|
|
|
#
|
|
# MDEV-8159 InnoDB: Failing assertion: key_state->key_id
|
|
#
|
|
create table t1 (i int) engine=innodb;
|
|
set global innodb_encryption_threads = 1;
|
|
set global innodb_encryption_rotate_key_age = 2;
|
|
insert t1 values (1);
|
|
drop table t1;
|
|
set global innodb_encryption_threads = 0;
|
|
set global innodb_encryption_rotate_key_age = 1;
|
|
|