List:Commits« Previous MessageNext Message »
From:msvensson Date:October 12 2006 1:53pm
Subject:bk commit into 5.1 tree (msvensson:1.2370)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of msvensson. When msvensson 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@stripped, 2006-10-12 13:53:21+02:00, msvensson@shellback.(none) +2 -0
  Merge shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
  into  shellback.(none):/home/msvensson/mysql/mysql-5.1-maint
  MERGE: 1.1810.1697.175

  client/mysqltest.c@stripped, 2006-10-12 13:53:16+02:00, msvensson@shellback.(none) +0 -0
    Auto merged
    MERGE: 1.155.9.60

  mysql-test/mysql-test-run.pl@stripped, 2006-10-12 13:53:16+02:00, msvensson@shellback.(none) +0 -0
    Auto merged
    MERGE: 1.30.1.99

# 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:	msvensson
# Host:	shellback.(none)
# Root:	/home/msvensson/mysql/mysql-5.1-maint/RESYNC

--- 1.196/mysql-test/mysql-test-run.pl	2006-10-12 13:53:29 +02:00
+++ 1.197/mysql-test/mysql-test-run.pl	2006-10-12 13:53:29 +02:00
@@ -1417,13 +1417,14 @@
   if ( $glob_use_embedded_server )
   {
     $exe_mysql_client_test=
-      mtr_exe_exists("$glob_basedir/libmysqld/examples/mysql_client_test_embedded",
-		     "$path_client_bindir/mysql_client_test_embedded");
+      mtr_exe_exists("$glob_basedir/libmysqld/examples/mysql_client_test_embedded");
   }
   else
   {
     $exe_mysql_client_test=
-      mtr_exe_exists("$path_client_bindir/mysql_client_test");
+      mtr_exe_exists("$glob_basedir/tests/mysql_client_test",
+		     "$glob_basedir/tests/release/mysql_client_test"
+		     "$glob_basedir/tests/debug/mysql_client_test");
   }
 }
 

--- 1.236/client/mysqltest.c	2006-10-12 13:53:29 +02:00
+++ 1.237/client/mysqltest.c	2006-10-12 13:53:30 +02:00
@@ -2709,12 +2709,12 @@
 
 void set_reconnect(MYSQL* mysql, int val)
 {
+  my_bool reconnect= val;
   DBUG_ENTER("set_reconnect");
   DBUG_PRINT("info", ("val: %d", val));
 #if MYSQL_VERSION_ID < 50000
-  mysql->reconnect= val;
+  mysql->reconnect= reconnect;
 #else
-  my_bool reconnect= val;
   mysql_options(mysql, MYSQL_OPT_RECONNECT, (char *)&reconnect);
 #endif
   DBUG_VOID_RETURN;
@@ -3609,7 +3609,7 @@
       *end= save;
     }
 
-    *ptr++;
+    ptr++;
   }
   DBUG_VOID_RETURN;
 }
Thread
bk commit into 5.1 tree (msvensson:1.2370)msvensson12 Oct