mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	 9bc874a594
			
		
	
	
	9bc874a594
	
	
	
		
			
			Let us introduce the parameter innodb_read_only_compressed that is ON by default, making any ROW_FORMAT=COMPRESSED tables read-only. I developed the ROW_FORMAT=COMPRESSED format based on Heikki Tuuri's rough design between 2005 and 2008. It might have been a good idea back then, but no proper benchmarks were ever run to validate the design or the implementation. The format has been more or less obsolete for years. It limits innodb_page_size to 16384 bytes (the default), and instant ALTER TABLE is not supported. This is the first step towards deprecating and removing write support for ROW_FORMAT=COMPRESSED tables.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			279 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| [COPY]
 | |
| --alter_algorithm=copy
 | |
| --skip-innodb-read-only-compressed
 | |
| 
 | |
| [INPLACE]
 | |
| --alter_algorithm=inplace
 | |
| --skip-innodb-read-only-compressed
 | |
| 
 | |
| [NOCOPY]
 | |
| --alter_algorithm=nocopy
 | |
| --skip-innodb-read-only-compressed
 | |
| 
 | |
| [INSTANT]
 | |
| --alter_algorithm=instant
 | |
| --skip-innodb-read-only-compressed
 |