mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			300 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			300 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
package My::Suite::Encryption;
 | 
						|
 | 
						|
@ISA = qw(My::Suite);
 | 
						|
 | 
						|
sub skip_combinations {
 | 
						|
  my @combinations;
 | 
						|
 | 
						|
  $skip{'include/have_file_key_management_plugin.combinations'} = [ 'ctr' ]
 | 
						|
    unless $::mysqld_variables{'version-ssl-library'} =~ /OpenSSL (\S+)/
 | 
						|
       and $1 ge "1.0.1";
 | 
						|
 | 
						|
  %skip;
 | 
						|
}
 | 
						|
 | 
						|
bless { };
 | 
						|
 |