blob: 478b9926e211a5f19ab6be2a9ca21d6047a98ed0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# suite.pm will make sure that all tests including this file
# will be skipped unless xtradb is enabled
#
# The test below is redundant
if (!`SELECT count(*) FROM information_schema.plugins WHERE
plugin_name = 'innodb' AND plugin_status = 'active' AND
plugin_description LIKE '%xtradb%'`){
skip Needs XtraDB engine;
}
|