mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
set global innodb_file_per_table=on;
 | 
						|
create table t1(a text) engine=innodb key_block_size=4;
 | 
						|
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
 | 
						|
page_size
 | 
						|
4096
 | 
						|
drop table t1;
 | 
						|
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
 | 
						|
page_size
 | 
						|
4096
 | 
						|
create table t2(a text) engine=innodb;
 | 
						|
SELECT page_size FROM information_schema.innodb_cmpmem WHERE pages_used > 0;
 | 
						|
page_size
 | 
						|
drop table t2;
 |