1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug#19027 MySQL 5.0 starts even with Fatal InnoDB errors

Fix bug in mtr_cases.pm script visible only when InnoDB isn't configured.
This commit is contained in:
Kristofer Pettersson
2009-05-17 22:16:21 +02:00
parent 162fa0059d
commit 0b608e98bb

View File

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