mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	 ee77375377
			
		
	
	
	ee77375377
	
	
	
		
			
			- Regression introduced in957cb7b7ba- Patch4abb8216a0change `mysql.user` to `mysql.global_priv` for `add_anonymous.inc`, update `delete_anonymous.inc`. - Added test case with `--skip-name-resolve` - Add test case with anonymous user - Disable this test for windows, assignes current user to anonymous user. Reviewed by: <serg@mariadb.com>
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			214 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			214 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| # Remove anonymous users added by add_anonymous_users.inc
 | |
| disable_warnings;
 | |
| disable_query_log;
 | |
| DELETE FROM mysql.global_priv where host='localhost' and user='';
 | |
| FLUSH PRIVILEGES;
 | |
| enable_query_log;
 | |
| enable_warnings;
 |