From 06eaf7232e9a920468c0f8d74dcf2fe8b555501c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 14:24:36 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/suite/federated/suite.pm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mysql-test/suite/federated/suite.pm (limited to 'mysql-test/suite/federated/suite.pm') diff --git a/mysql-test/suite/federated/suite.pm b/mysql-test/suite/federated/suite.pm new file mode 100644 index 00000000..6b97fd65 --- /dev/null +++ b/mysql-test/suite/federated/suite.pm @@ -0,0 +1,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 { }; + -- cgit v1.2.3