mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			416 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			416 B
		
	
	
	
		
			Text
		
	
	
	
	
	
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_CMP_RESET;
 | 
						|
Table	Create Table
 | 
						|
INNODB_CMP_RESET	CREATE TEMPORARY TABLE `INNODB_CMP_RESET` (
 | 
						|
  `page_size` int(5) NOT NULL,
 | 
						|
  `compress_ops` int(11) NOT NULL,
 | 
						|
  `compress_ops_ok` int(11) NOT NULL,
 | 
						|
  `compress_time` int(11) NOT NULL,
 | 
						|
  `uncompress_ops` int(11) NOT NULL,
 | 
						|
  `uncompress_time` int(11) NOT NULL
 | 
						|
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci
 |