From: magnus.blaudd Date: September 19 2011 2:55pm Subject: bzr push into mysql-5.5-cluster branch (magnus.blaudd:3500 to 3501) List-Archive: http://lists.mysql.com/commits/141015 Message-Id: <20110919145559.E5D5013402B@pilot> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 3501 magnus.blaudd@stripped 2011-09-19 ndb - choose RelWithDebinfo as default build configuration on Windows modified: storage/ndb/compile-cluster 3500 Jonas Oreland 2011-09-19 ndb - introduce HASH for dropped tables. This makes ndb_autodiscover3 fail "normally" (not core dump). Problem with that testcase was that mysqld had an open transaction when ndbd restarted initial. And when binlog-thread then restarted...it got bad modified: sql/ha_ndbcluster.cc sql/ha_ndbcluster_binlog.cc sql/ha_ndbcluster_binlog.h === modified file 'storage/ndb/compile-cluster' --- a/storage/ndb/compile-cluster 2011-06-30 18:43:59 +0000 +++ b/storage/ndb/compile-cluster 2011-09-19 14:55:25 +0000 @@ -100,9 +100,20 @@ my $cmake_version_id; # which is available from cmake 2.8 and works on all platforms my @args; push(@args, "--build"); - push(@args, "$srcdir"); + if ($^O eq "cygwin" or $^O eq "MSWin32") + { + # Choose to build RelWitDebInfo by default on Windows + my $config = 'RelWithDebInfo'; + if ($opt_debug) + { + $config = 'Debug'; + } + push(@args, "--config"); + push(@args, $config); + } + cmd("cmake", @args); } No bundle (reason: useless for push emails).