summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjorn Munch <Bjorn.Munch@sun.com>2009-07-17 10:41:04 +0200
committerBjorn Munch <Bjorn.Munch@sun.com>2009-07-17 10:41:04 +0200
commit53e14eaa0aab03020b7ae268e3a45d03ab6d7ac0 (patch)
tree154032e7507e3e54252c5bf7d18b76eec66580b3
parent0952b9b59b0000c81d1f6e3a234721c5c6e1b434 (diff)
downloadmariadb-git-53e14eaa0aab03020b7ae268e3a45d03ab6d7ac0.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"
-rw-r--r--mysql-test/lib/v1/mtr_cases.pl2
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;