mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	As presently PARTITIONS + FEDERATED just doesn't work i added error message to inform user about that. Should be enabled again after releted WL's completion.
		
			
				
	
	
		
			7 lines
		
	
	
		
			271 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			271 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
create table t1 (s1 int) engine=federated
 | 
						|
connection='mysql://root@localhost/federated/t1' partition by list (s1)
 | 
						|
(partition p1 values in (1), partition p2 values in (2));
 | 
						|
ERROR HY000: Engine cannot be used in partitioned tables
 | 
						|
End of 5.1 tests
 |