mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
mtr changes:
* expanding unknown env variable does not abort mtr * have_archive, blackhole, innodb - preload the corresponding engine * all options from .opt files get equal treatment, all are searched for special options, not only -{master,slave}.opt as before (which ignored suite.opt and --mysqld=...) * --plugin-load gets special treatment too - all instances are merged into one * federated test fixed to preload federated
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
--disable_query_log
|
||||
--require r/true.require
|
||||
select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'archive';
|
||||
--enable_query_log
|
||||
if (!`SELECT count(*) FROM information_schema.engines WHERE
|
||||
(support = 'YES' OR support = 'DEFAULT') AND
|
||||
engine = 'archive'`){
|
||||
skip Need archive engine;
|
||||
}
|
||||
|
2
mysql-test/include/have_archive.opt
Normal file
2
mysql-test/include/have_archive.opt
Normal file
@ -0,0 +1,2 @@
|
||||
--loose-archive
|
||||
--plugin-load=$HA_ARCHIVE_SO
|
2
mysql-test/include/have_blackhole.opt
Normal file
2
mysql-test/include/have_blackhole.opt
Normal file
@ -0,0 +1,2 @@
|
||||
--loose-blackhole
|
||||
--plugin-load=$HA_BLACKHOLE_SO
|
@ -1 +1,2 @@
|
||||
--loose-innodb
|
||||
--plugin-load=$HA_XTRADB_SO
|
||||
|
@ -1,4 +1,5 @@
|
||||
disable_query_log;
|
||||
--require r/true.require
|
||||
select (support = 'YES' or support = 'DEFAULT') as `TRUE` from information_schema.engines where engine = 'pbxt';
|
||||
enable_query_log;
|
||||
if (!`SELECT count(*) FROM information_schema.engines WHERE
|
||||
(support = 'YES' OR support = 'DEFAULT') AND
|
||||
engine = 'pbxt'`){
|
||||
skip Need PBXT engine;
|
||||
}
|
||||
|
Reference in New Issue
Block a user