mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	- Use mysql_system_tables.sql to create MySQL system tables in all places where we create them(mysql_install_db, mysql-test-run-pl and mysql_fix_privilege_tables.sql)
		
			
				
	
	
		
			8 lines
		
	
	
		
			187 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			187 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
# Allow anonymous users to connect 
 | 
						|
disable_warnings;
 | 
						|
disable_query_log;
 | 
						|
INSERT INTO mysql.user (host, user) VALUES ('localhost','');
 | 
						|
FLUSH PRIVILEGES;
 | 
						|
enable_query_log;
 | 
						|
enable_warnings;
 |