Commit 4a7dc4de authored by msvensson@neptunus.(none)'s avatar msvensson@neptunus.(none)

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

into  neptunus.(none):/home/msvensson/mysql/same_tools/my50-same_tools
parents c1744399 1fb0862f
...@@ -1189,10 +1189,20 @@ sub check_mysqld_features () { ...@@ -1189,10 +1189,20 @@ sub check_mysqld_features () {
} }
else else
{ {
# The variable list is ended with a blank line, so when a line # The variable list is ended with a blank line
# doesn't match the above regex, break the loop if ( $line =~ /^[\s]*$/ )
{
last; last;
} }
else
{
# Send out a warning, we should fix the variables that has no
# space between variable name and it's value
# or should it be fixed width column parsing? It does not
# look like that in function my_print_variables in my_getopt.c
mtr_warning("Could not parse variable list line : $line");
}
}
} }
} }
} }
...@@ -1959,9 +1969,9 @@ sub ndbcluster_start_install ($) { ...@@ -1959,9 +1969,9 @@ sub ndbcluster_start_install ($) {
if (!$opt_bench) if (!$opt_bench)
{ {
# Use a smaller configuration # Use a smaller configuration
if ( $mysql_version_id < 50000 ) if ( $mysql_version_id < 50100 )
{ {
# 4.1 is using a "larger" --small configuration # 4.1 and 5.0 is using a "larger" --small configuration
$ndb_no_ord=128; $ndb_no_ord=128;
$ndb_con_op=10000; $ndb_con_op=10000;
$ndb_dmem="40M"; $ndb_dmem="40M";
......
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