mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| set @save_max_allowed_packet=@@max_allowed_packet;
 | |
| set global max_allowed_packet=1024*1024*10;
 | |
| connect con1,localhost,root;
 | |
| ERROR HY000: The definition for table `t1` is too big
 | |
| connection default;
 | |
| disconnect con1;
 | |
| set global max_allowed_packet=@save_max_allowed_packet;
 | 
