blob: 6b97fd6528e6b395a8f0eb5af8487af28a4e282e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package My::Suite::Federated;
@ISA = qw(My::Suite);
sub skip_combinations {
my @combinations;
push @combinations, 'old'
unless $ENV{HA_FEDERATED_SO} and not $::mysqld_variables{'federated'};
push @combinations, 'X'
unless $ENV{HA_FEDERATEDX_SO} or $::mysqld_variables{'federated'};
( 'combinations' => [ @combinations ] )
}
############# return an object ######################
bless { };
|