mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	innodb_file_format=Barracuda is the default in MariaDB 10.2. Do not set it, because the option will be removed in MariaDB 10.3. Also, do not set innodb_file_per_table=1 because it is the default. Note that MDEV-11828 should fix the test innodb.innodb-64k already in 10.1.
		
			
				
	
	
		
			109 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| -- source include/have_innodb.inc
 | |
| -- source include/have_file_key_management_plugin.inc
 | |
| -- source include/not_embedded.inc
 | |
| 
 | |
| create table innodb_compressed1(c1 bigint not null primary key, d int, a varchar(20), b char(200)) engine=innodb row_format=compressed encrypted=yes;
 | |
| create table innodb_compressed2(c1 bigint not null primary key, d int, a varchar(20), b char(200)) engine=innodb row_format=compressed key_block_size=1 encrypted=yes;
 | |
| create table innodb_compressed3(c1 bigint not null primary key, d int, a varchar(20), b char(200)) engine=innodb row_format=compressed key_block_size=2 encrypted=yes;
 | |
| create table innodb_compressed4(c1 bigint not null primary key, d int, a varchar(20), b char(200)) engine=innodb row_format=compressed key_block_size=4 encrypted=yes;
 | |
| 
 | |
| insert into innodb_compressed1 values (1, 20, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (2, 20, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (3, 30, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (4, 30, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (5, 30, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (6, 30, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (7, 30, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (8, 20, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (9, 20, 'private', 'evenmoreprivate');
 | |
| insert into innodb_compressed1 values (10, 20, 'private', 'evenmoreprivate');
 | |
| 
 | |
| insert into innodb_compressed2 select * from innodb_compressed1;
 | |
| insert into innodb_compressed3 select * from innodb_compressed1;
 | |
| insert into innodb_compressed4 select * from innodb_compressed1;
 | |
| 
 | |
| --source include/restart_mysqld.inc
 | |
| 
 | |
| --let $MYSQLD_DATADIR=`select @@datadir`
 | |
| --let t1_IBD = $MYSQLD_DATADIR/test/innodb_compressed1.ibd
 | |
| --let t2_IBD = $MYSQLD_DATADIR/test/innodb_compressed2.ibd
 | |
| --let t3_IBD = $MYSQLD_DATADIR/test/innodb_compressed3.ibd
 | |
| --let t4_IBD = $MYSQLD_DATADIR/test/innodb_compressed4.ibd
 | |
| --let SEARCH_RANGE = 10000000
 | |
| --let SEARCH_PATTERN=private
 | |
| --echo # t1 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t1_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t2 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t2_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t3 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t3_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t4 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t4_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| 
 | |
| select * from innodb_compressed1 where d = 20;
 | |
| select * from innodb_compressed1 where d = 30;
 | |
| select * from innodb_compressed2 where d = 20;
 | |
| select * from innodb_compressed2 where d = 30;
 | |
| select * from innodb_compressed3 where d = 20;
 | |
| select * from innodb_compressed3 where d = 30;
 | |
| select * from innodb_compressed4 where d = 20;
 | |
| select * from innodb_compressed4 where d = 30;
 | |
| 
 | |
| update innodb_compressed1 set d = d + 10 where d = 30;
 | |
| update innodb_compressed2 set d = d + 10 where d = 30;
 | |
| update innodb_compressed3 set d = d + 10 where d = 30;
 | |
| update innodb_compressed4 set d = d + 10 where d = 30;
 | |
| 
 | |
| insert into innodb_compressed1 values (20, 60, 'newprivate', 'newevenmoreprivate');
 | |
| insert into innodb_compressed2 values (20, 60, 'newprivate', 'newevenmoreprivate');
 | |
| insert into innodb_compressed3 values (20, 60, 'newprivate', 'newevenmoreprivate');
 | |
| insert into innodb_compressed4 values (20, 60, 'newprivate', 'newevenmoreprivate');
 | |
| 
 | |
| --let SEARCH_PATTERN=private
 | |
| --echo # t1 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t1_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t2 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t2_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t3 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t3_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t4 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t4_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| 
 | |
| --source include/restart_mysqld.inc
 | |
| 
 | |
| select * from innodb_compressed1 where d = 40;
 | |
| select * from innodb_compressed1 where d = 60;
 | |
| select * from innodb_compressed2 where d = 40;
 | |
| select * from innodb_compressed2 where d = 60;
 | |
| select * from innodb_compressed3 where d = 40;
 | |
| select * from innodb_compressed3 where d = 60;
 | |
| select * from innodb_compressed4 where d = 40;
 | |
| select * from innodb_compressed4 where d = 60;
 | |
| 
 | |
| --let SEARCH_PATTERN=private
 | |
| --echo # t1 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t1_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t2 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t2_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t3 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t3_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| --echo # t4 yes on expecting NOT FOUND
 | |
| -- let SEARCH_FILE=$t4_IBD
 | |
| -- source include/search_pattern_in_file.inc
 | |
| 
 | |
| drop table innodb_compressed1;
 | |
| drop table innodb_compressed2;
 | |
| drop table innodb_compressed3;
 | |
| drop table innodb_compressed4;
 |