mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
7 lines
258 B
Text
7 lines
258 B
Text
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;
|