mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	mysql-test/t/openssl_1.test: Add "have_ssl" as synonym for "have_openssl" Correct comment
		
			
				
	
	
		
			14 lines
		
	
	
		
			185 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			185 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
 | 
						|
-- source include/have_ssl.inc
 | 
						|
 | 
						|
# Repeat connect/disconnect
 | 
						|
 | 
						|
let $i=100;
 | 
						|
while ($i)
 | 
						|
{
 | 
						|
  connect (test_con1,localhost,root,,,,,SSL);
 | 
						|
  disconnect test_con1;
 | 
						|
  dec $i;
 | 
						|
}
 | 
						|
echo completed;
 |