Commit 651a5882 authored by msvensson@neptunus.(none)'s avatar msvensson@neptunus.(none)

Merge neptunus.(none):/home/msvensson/mysql/same_tools/my50-same_tools

into  neptunus.(none):/home/msvensson/mysql/same_tools/my51-same_tools
parents 5a24bac8 08258603
...@@ -1889,7 +1889,7 @@ sub check_ssl_support ($) { ...@@ -1889,7 +1889,7 @@ sub check_ssl_support ($) {
sub check_debug_support ($) { sub check_debug_support ($) {
my $mysqld_variables= shift; my $mysqld_variables= shift;
if ( $mysqld_variables->{'debug'} ) if ( ! $mysqld_variables->{'debug'} )
{ {
#mtr_report("Binaries are not debug compiled"); #mtr_report("Binaries are not debug compiled");
$debug_compiled_binaries= 0; $debug_compiled_binaries= 0;
...@@ -1959,11 +1959,22 @@ sub ndbcluster_start_install ($) { ...@@ -1959,11 +1959,22 @@ sub ndbcluster_start_install ($) {
if (!$opt_bench) if (!$opt_bench)
{ {
# Use a smaller configuration # Use a smaller configuration
$ndb_no_ord=32; if ( $mysql_version_id < 50000 )
$ndb_con_op=5000; {
$ndb_dmem="20M"; # 4.1 is using a "larger" --small configuration
$ndb_imem="1M"; $ndb_no_ord=128;
$ndb_pbmem="4M"; $ndb_con_op=10000;
$ndb_dmem="40M";
$ndb_imem="12M";
}
else
{
$ndb_no_ord=32;
$ndb_con_op=5000;
$ndb_dmem="20M";
$ndb_imem="1M";
$ndb_pbmem="4M";
}
} }
my $config_file_template= "ndb/ndb_config_${nodes}_node.ini"; my $config_file_template= "ndb/ndb_config_${nodes}_node.ini";
...@@ -2541,7 +2552,10 @@ skip-innodb ...@@ -2541,7 +2552,10 @@ skip-innodb
skip-ndbcluster skip-ndbcluster
EOF EOF
; ;
if ( $mysql_version_id < 50100 )
{
print OUT "skip-bdb\n";
}
print OUT "nonguarded\n" if $instance->{'nonguarded'}; print OUT "nonguarded\n" if $instance->{'nonguarded'};
if ( $mysql_version_id >= 50100 ) if ( $mysql_version_id >= 50100 )
{ {
......
...@@ -22,6 +22,7 @@ server_id VALUE ...@@ -22,6 +22,7 @@ server_id VALUE
skip-stack-trace VALUE skip-stack-trace VALUE
skip-innodb VALUE skip-innodb VALUE
skip-ndbcluster VALUE skip-ndbcluster VALUE
skip-bdb VALUE
log-output VALUE log-output VALUE
SHOW INSTANCE OPTIONS mysqld2; SHOW INSTANCE OPTIONS mysqld2;
option_name value option_name value
...@@ -40,6 +41,7 @@ server_id VALUE ...@@ -40,6 +41,7 @@ server_id VALUE
skip-stack-trace VALUE skip-stack-trace VALUE
skip-innodb VALUE skip-innodb VALUE
skip-ndbcluster VALUE skip-ndbcluster VALUE
skip-bdb VALUE
nonguarded VALUE nonguarded VALUE
log-output VALUE log-output VALUE
START INSTANCE mysqld2; START INSTANCE mysqld2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment