mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 c73a65f55b
			
		
	
	
	c73a65f55b
	
	
	
		
			
			fil_iterate(): Allocation bitmap pages are never encrypted. Reviewed by: Thirunarayanan Balathandayuthapani
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			800 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			800 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| --source include/have_innodb.inc
 | |
| --source include/have_sequence.inc
 | |
| --source include/have_example_key_management_plugin.inc
 | |
| --source include/have_debug.inc
 | |
| 
 | |
| 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;
 | |
| --let $datadir= `select @@datadir`
 | |
| --copy_file $datadir/test/t1.ibd $datadir/t1.ibd
 | |
| --copy_file $datadir/test/t1.cfg $datadir/t1.cfg
 | |
| unlock tables;
 | |
| alter table t1 discard tablespace;
 | |
| --move_file $datadir/t1.ibd $datadir/test/t1.ibd
 | |
| --move_file $datadir/t1.cfg $datadir/test/t1.cfg
 | |
| alter table t1 import tablespace;
 | |
| set global innodb_limit_optimistic_insert_debug=@save_limit;
 | |
| drop table t1;
 |