Below is the list of changes that have just been committed into a local
5.0 repository of joerg. When joerg does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2140 06/04/07 13:16:40 joerg@stripped +2 -0
Manual merge.
mysql-test/mysql-test-run.sh
1.299 06/04/07 13:16:35 joerg@stripped +3 -3
Manual merge.
mysql-test/lib/mtr_process.pl
1.28 06/04/07 13:08:59 joerg@stripped +0 -0
Auto merged
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: joerg
# Host: trift2.
# Root: /M50/mtr-5.0/RESYNC
--- 1.298/mysql-test/mysql-test-run.sh 2006-03-06 23:43:19 +01:00
+++ 1.299/mysql-test/mysql-test-run.sh 2006-04-07 13:16:35 +02:00
@@ -277,6 +277,7 @@
EXTRA_MYSQLBINLOG_OPT=""
USE_RUNNING_SERVER=0
USE_NDBCLUSTER=@USE_NDBCLUSTER@
+USE_NDBCLUSTER_ONLY=0
USE_RUNNING_NDBCLUSTER=""
USE_PURIFY=""
PURIFY_LOGS=""
@@ -341,6 +342,10 @@
--extern) USE_RUNNING_SERVER=1 ;;
--with-ndbcluster)
USE_NDBCLUSTER="--ndbcluster" ;;
+ --with-ndbcluster-only)
+ USE_NDBCLUSTER="--ndbcluster"
+ USE_NDBCLUSTER_SLAVE="--ndbcluster"
+ USE_NDBCLUSTER_ONLY=1 ;;
--ndb-connectstring=*)
USE_NDBCLUSTER="--ndbcluster" ;
USE_RUNNING_NDBCLUSTER=`$ECHO "$1" | $SED -e "s;--ndb-connectstring=;;"` ;;
@@ -1654,6 +1659,11 @@
result_file="r/$tname.result"
echo $tname > $CURRENT_TEST
SKIP_SLAVE=`$EXPR \( $tname : rpl \) = 0 \& \( $tname : federated \) = 0`
+ NDBCLUSTER_TEST=`$EXPR \( $tname : '.*ndb.*' \) != 0`
+ if [ "x$USE_NDBCLUSTER_ONLY" = "x1" -a "x$NDBCLUSTER_TEST" != "x1" ] ; then
+ skip_test $tname
+ return
+ fi
if [ "$USE_MANAGER" = 1 ] ; then
many_slaves=`$EXPR \( \( $tname : rpl_failsafe \) != 0 \) \| \( \( $tname :
rpl_chain_temp_table \) != 0 \)`
fi
--- 1.27/mysql-test/lib/mtr_process.pl 2006-02-12 04:26:43 +01:00
+++ 1.28/mysql-test/lib/mtr_process.pl 2006-04-07 13:08:59 +02:00
@@ -465,8 +465,7 @@
if ( kill(0, @pids) ) # Check if some left
{
- # FIXME maybe just mtr_warning() ?
- mtr_error("can't kill process(es) " . join(" ", @pids));
+ mtr_warning("can't kill process(es) " . join(" ", @pids));
}
}
}
@@ -479,7 +478,7 @@
{
if ( mtr_ping_mysqld_server($srv->{'port'}, $srv->{'sockfile'}) )
{
- mtr_error("can't kill old mysqld holding port $srv->{'port'}");
+ mtr_warning("can't kill old mysqld holding port $srv->{'port'}");
}
}
}
| Thread |
|---|
| • bk commit into 5.0 tree (joerg:1.2140) | Joerg Bruehe | 7 Apr |