1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug #45700 MTR v1 --start-and-exit --default-storage-engine=Innodb is froken

Change of variable states in Bug 19027 was not backported to v1
Changed ne "TRUE" to eq "OFF"
This commit is contained in:
Bjorn Munch
2009-07-17 10:41:04 +02:00
parent 5a2d043f1d
commit b9720c7170

View File

@ -860,7 +860,7 @@ sub collect_one_test_case($$$$$$$$$) {
if ( $tinfo->{'innodb_test'} )
{
# This is a test that need innodb
if ( $::mysqld_variables{'innodb'} ne "TRUE" )
if ( $::mysqld_variables{'innodb'} eq "OFF" )
{
# innodb is not supported, skip it
$tinfo->{'skip'}= 1;