Bug #54660 MTR cannot start server properly with non-default innodb_log_file_size
Pass any --innodb* options to bootstrap as well Backported to v1, where also a removal of --loose-skip-innodb is needed
This commit is contained in:
parent
44568b7014
commit
aa93035b88
@ -3126,6 +3126,15 @@ sub install_db ($$) {
|
|||||||
mtr_add_arg($args, "--lc-messages-dir=%s", $path_language);
|
mtr_add_arg($args, "--lc-messages-dir=%s", $path_language);
|
||||||
mtr_add_arg($args, "--character-sets-dir=%s", $path_charsetsdir);
|
mtr_add_arg($args, "--character-sets-dir=%s", $path_charsetsdir);
|
||||||
|
|
||||||
|
# InnoDB arguments that affect file location and sizes may
|
||||||
|
# need to be given to the bootstrap process as well as the
|
||||||
|
# server process.
|
||||||
|
foreach my $extra_opt ( @opt_extra_mysqld_opt ) {
|
||||||
|
if ($extra_opt =~ /--innodb/) {
|
||||||
|
mtr_add_arg($args, $extra_opt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# If DISABLE_GRANT_OPTIONS is defined when the server is compiled (e.g.,
|
# If DISABLE_GRANT_OPTIONS is defined when the server is compiled (e.g.,
|
||||||
# configure --disable-grant-options), mysqld will not recognize the
|
# configure --disable-grant-options), mysqld will not recognize the
|
||||||
# --bootstrap or --skip-grant-tables options. The user can set
|
# --bootstrap or --skip-grant-tables options. The user can set
|
||||||
@ -3925,11 +3934,6 @@ sub mysqld_arguments ($$$$) {
|
|||||||
|
|
||||||
mtr_add_arg($args, "%s--local-infile", $prefix);
|
mtr_add_arg($args, "%s--local-infile", $prefix);
|
||||||
|
|
||||||
if ( $idx > 0 or !$use_innodb)
|
|
||||||
{
|
|
||||||
mtr_add_arg($args, "%s--loose-skip-innodb", $prefix);
|
|
||||||
}
|
|
||||||
|
|
||||||
my $cluster= $clusters->[$mysqld->{'cluster'}];
|
my $cluster= $clusters->[$mysqld->{'cluster'}];
|
||||||
if ( $cluster->{'pid'} || # Cluster is started
|
if ( $cluster->{'pid'} || # Cluster is started
|
||||||
$cluster->{'use_running'} ) # Using running cluster
|
$cluster->{'use_running'} ) # Using running cluster
|
||||||
|
@ -2888,6 +2888,15 @@ sub mysql_install_db {
|
|||||||
mtr_add_arg($args, "--lc-messages-dir=%s", $install_lang);
|
mtr_add_arg($args, "--lc-messages-dir=%s", $install_lang);
|
||||||
mtr_add_arg($args, "--character-sets-dir=%s", $install_chsdir);
|
mtr_add_arg($args, "--character-sets-dir=%s", $install_chsdir);
|
||||||
|
|
||||||
|
# InnoDB arguments that affect file location and sizes may
|
||||||
|
# need to be given to the bootstrap process as well as the
|
||||||
|
# server process.
|
||||||
|
foreach my $extra_opt ( @opt_extra_mysqld_opt ) {
|
||||||
|
if ($extra_opt =~ /--innodb/) {
|
||||||
|
mtr_add_arg($args, $extra_opt);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# If DISABLE_GRANT_OPTIONS is defined when the server is compiled (e.g.,
|
# If DISABLE_GRANT_OPTIONS is defined when the server is compiled (e.g.,
|
||||||
# configure --disable-grant-options), mysqld will not recognize the
|
# configure --disable-grant-options), mysqld will not recognize the
|
||||||
# --bootstrap or --skip-grant-tables options. The user can set
|
# --bootstrap or --skip-grant-tables options. The user can set
|
||||||
|
Loading…
x
Reference in New Issue
Block a user