diff options
author | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-07-17 10:41:04 +0200 |
---|---|---|
committer | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-07-17 10:41:04 +0200 |
commit | b9720c71700ad91b2320750ea72c787338d08810 (patch) | |
tree | 154032e7507e3e54252c5bf7d18b76eec66580b3 /mysql-test | |
parent | 5a2d043f1d8e4c00f98ae33dd009d91ee6a0ec78 (diff) | |
download | mariadb-git-b9720c71700ad91b2320750ea72c787338d08810.tar.gz |
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"
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/lib/v1/mtr_cases.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/v1/mtr_cases.pl b/mysql-test/lib/v1/mtr_cases.pl index bed24bcabfb..906e330282a 100644 --- a/mysql-test/lib/v1/mtr_cases.pl +++ b/mysql-test/lib/v1/mtr_cases.pl @@ -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; |