mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			363 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
--source include/not_embedded.inc
 | 
						|
 | 
						|
if (`select count(*) = 0 from information_schema.plugins where plugin_name = 'unix_socket' and plugin_status='active'`)
 | 
						|
{
 | 
						|
  --skip Needs unix_socket plugin
 | 
						|
}
 | 
						|
 | 
						|
if (!$USER) {
 | 
						|
  skip USER variable is undefined;
 | 
						|
}
 | 
						|
 | 
						|
if (`SELECT count(*) <> 0 FROM mysql.user WHERE user = '$USER'`) {
 | 
						|
  skip \$USER=$USER which exists in mysql.user;
 | 
						|
}
 |