mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Optimised version of ADD/DROP/REORGANIZE partitions for non-NDB storage engines. New syntax to handle REBUILD/OPTIMIZE/ANALYZE/CHECK/REPAIR partitions Quite a few bug fixes
		
			
				
	
	
		
			26 lines
		
	
	
		
			810 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			810 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
###############################################
 | 
						|
#                                             #
 | 
						|
#  Partition tests MyISAM tables              #
 | 
						|
#                                             #
 | 
						|
###############################################
 | 
						|
 | 
						|
#    
 | 
						|
# NOTE: PLEASE DO NOT ADD NOT MYISAM SPECIFIC TESTCASES HERE !
 | 
						|
#       NON STORAGE SPECIFIC TESTCASES SHOULD BE ADDED IN
 | 
						|
#       THE SOURCED FIELS ONLY.
 | 
						|
#
 | 
						|
 | 
						|
# Storage engine to be tested
 | 
						|
let $engine= 'MYISAM';
 | 
						|
eval SET SESSION storage_engine=$engine;
 | 
						|
 | 
						|
 | 
						|
# Other storage engine <> storage engine to be tested
 | 
						|
let $engine_other= 'MEMORY';
 | 
						|
# number of rows for the INSERT/UPDATE/DELETE/SELECT experiments
 | 
						|
#                on partioned tables
 | 
						|
# Attention: In the moment the result files fit to @max_row = 200 only
 | 
						|
SET @max_row = 200;
 | 
						|
 | 
						|
-- source include/partition_1.inc
 |