Work around MySQL bug #59393 wrt. ignore-builtin-innodb.
This commit is contained in:
parent
4df766729c
commit
778cc60885
1 changed files with 4 additions and 0 deletions
|
@ -354,6 +354,10 @@ sub get_all_vars {
|
||||||
$line =~ /([a-zA-Z_]*)\s*(.*)/;
|
$line =~ /([a-zA-Z_]*)\s*(.*)/;
|
||||||
$mystat{$1} = $2;
|
$mystat{$1} = $2;
|
||||||
}
|
}
|
||||||
|
# Workaround for MySQL bug #59393 wrt. ignore-builtin-innodb
|
||||||
|
if (($myvar{'ignore_builtin_innodb'} || "") eq "ON") {
|
||||||
|
$myvar{'have_innodb'} = "NO";
|
||||||
|
}
|
||||||
# have_* for engines is deprecated and will be removed in MySQL 5.6;
|
# have_* for engines is deprecated and will be removed in MySQL 5.6;
|
||||||
# check SHOW ENGINES and set corresponding old style variables.
|
# check SHOW ENGINES and set corresponding old style variables.
|
||||||
# Also works around MySQL bug #59393 wrt. skip-innodb
|
# Also works around MySQL bug #59393 wrt. skip-innodb
|
||||||
|
|
Loading…
Reference in a new issue