mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			271 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			271 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
create table t1 as select * from mysql.user;
 | 
						|
truncate table mysql.user;
 | 
						|
flush privileges;
 | 
						|
connect(localhost,u1,,test,MASTER_PORT,MASTER_SOCKET);
 | 
						|
connect  fail,localhost,u1;
 | 
						|
Got one of the listed errors
 | 
						|
insert mysql.user select * from t1;
 | 
						|
drop table t1;
 | 
						|
flush privileges;
 |