mirror of
https://github.com/MariaDB/server.git
synced 2025-02-05 13:22:17 +01:00
c73a65f55b
fil_iterate(): Allocation bitmap pages are never encrypted. Reviewed by: Thirunarayanan Balathandayuthapani
10 lines
412 B
Text
10 lines
412 B
Text
set @save_limit = @@GLOBAL.innodb_limit_optimistic_insert_debug;
|
|
set global innodb_limit_optimistic_insert_debug=3;
|
|
create table t1 (a INT PRIMARY KEY) engine=InnoDB ENCRYPTED=YES;
|
|
insert into t1 select * from seq_1_to_6000;
|
|
flush table t1 for export;
|
|
unlock tables;
|
|
alter table t1 discard tablespace;
|
|
alter table t1 import tablespace;
|
|
set global innodb_limit_optimistic_insert_debug=@save_limit;
|
|
drop table t1;
|