blob: 1a90a31870bc2dec98039ca12ed377ba793c2f88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--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;
|