blob: 0178635afb7662c7cf1b2a7c4bab79f12be61035 (
plain)
1
2
3
4
5
6
7
|
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;
|