1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

InnoDB: check if scrubbing is enabled before scanning the tablespace

This commit is contained in:
Sergei Golubchik
2015-05-14 10:13:03 +02:00
parent a94cabd503
commit 8258a34800
4 changed files with 88 additions and 88 deletions

View File

@ -2,6 +2,6 @@ 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;
drop table t1;