File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,15 @@ sub skip_combinations {
7
7
my @combinations ;
8
8
9
9
# disable innodb/xtradb combinatons for configurations that were not built
10
- push @combinations , ' innodb_plugin' unless $ENV {HA_INNODB_SO };
10
+ push @combinations , ' innodb_plugin' ; # unless $ENV{HA_INNODB_SO};
11
11
12
- push @combinations , qw( xtradb innodb) unless $: :mysqld_variables{' innodb' } eq " ON" ;
13
-
14
- # unconditionally, for now in 10.2. Later it could check for xtradb I_S plugins
15
- push @combinations , ' xtradb' ;
12
+ # if something is compiled in, it's xtradb. innodb is MODULE_ONLY:
13
+ push @combinations , ' xtradb' ; # unless $::mysqld_variables{'innodb'} eq "ON";
14
+ # push @combinations, 'innodb';
16
15
17
16
# XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server
18
- push @combinations , ' xtradb_plugin' if not $ENV {HA_XTRADB_SO }
19
- or $: :opt_embedded_server;
17
+ push @combinations , ' xtradb_plugin' ; # if not $ENV{HA_XTRADB_SO}
18
+ # or $::opt_embedded_server;
20
19
21
20
my %skip = ( ' include/have_innodb.combinations' => [ @combinations ],
22
21
' include/have_xtradb.combinations' => [ @combinations ]);
You can’t perform that action at this time.
0 commit comments