Commit b8dfedd7 authored by Sergei Golubchik's avatar Sergei Golubchik

the mysql-test combination is 'innodb' not 'xtradb'

parent e336fc07
...@@ -43,3 +43,17 @@ innodb-buffer-page-lru ...@@ -43,3 +43,17 @@ innodb-buffer-page-lru
innodb-sys-foreign innodb-sys-foreign
innodb-sys-foreign-cols innodb-sys-foreign-cols
innodb-sys-tables innodb-sys-tables
[innodb]
innodb
innodb-cmpmem
innodb-cmp-per-index
innodb-trx
innodb-locks
innodb-metrics
innodb-buffer-pool-stats
innodb-buffer-page
innodb-buffer-page-lru
innodb-sys-foreign
innodb-sys-foreign-cols
innodb-sys-tables
...@@ -9,9 +9,10 @@ sub skip_combinations { ...@@ -9,9 +9,10 @@ sub skip_combinations {
# disable innodb/xtradb combinatons for configurations that were not built # disable innodb/xtradb combinatons for configurations that were not built
push @combinations, 'innodb_plugin' unless $ENV{HA_INNODB_SO}; push @combinations, 'innodb_plugin' unless $ENV{HA_INNODB_SO};
# if something is compiled in, it's xtradb. innodb is MODULE_ONLY: push @combinations, qw(xtradb innodb) unless $::mysqld_variables{'innodb'} eq "ON";
push @combinations, 'xtradb' unless $::mysqld_variables{'innodb'} eq "ON";
push @combinations, 'innodb'; # unconditionally, for now in 10.2. Later it could check for xtradb I_S plugins
push @combinations, 'xtradb';
# XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server # XtraDB is RECOMPILE_FOR_EMBEDDED, ha_xtradb.so cannot work with embedded server
push @combinations, 'xtradb_plugin' if not $ENV{HA_XTRADB_SO} push @combinations, 'xtradb_plugin' if not $ENV{HA_XTRADB_SO}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment