List:Internals« Previous MessageNext Message »
From:Georg Richter Date:July 16 2005 7:19am
Subject:bk commit into 5.0 tree (georg:1.1946)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of georg. When georg 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.1946 05/07/16 09:19:23 georg@stripped +1 -0
  cs fixes

  tests/mysql_client_test.c
    1.142 05/07/16 09:19:17 georg@stripped +6 -6
    cs fixes

# 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:	georg
# Host:	lmy002.wdf.sap.corp
# Root:	/home/georg/work/mysql-5.0

--- 1.141/tests/mysql_client_test.c	2005-07-16 09:13:29 +02:00
+++ 1.142/tests/mysql_client_test.c	2005-07-16 09:19:17 +02:00
@@ -13617,8 +13617,8 @@
 static void test_client_character_set()
 {
   MY_CHARSET_INFO cs;
-  char *csname = (char*) "utf8";
-  char *csdefault = (char*)mysql_character_set_name(mysql);
+  char *csname= (char*) "utf8";
+  char *csdefault= (char*)mysql_character_set_name(mysql);
   int rc;
 
   myheader("test_client_character_set");
@@ -13732,16 +13732,16 @@
     fprintf(stdout, "Got error, as expected:\n [%d] %s\n",
             mysql_stmt_errno(stmt), mysql_stmt_error(stmt));
 
-  rc = mysql_stmt_execute(stmt);
+  rc= mysql_stmt_execute(stmt);
   check_execute(stmt, rc);
 
-  rc = mysql_stmt_fetch(stmt);
+  rc= mysql_stmt_fetch(stmt);
   DIE_UNLESS(rc==0);
 
-  rc = mysql_stmt_fetch(stmt);
+  rc= mysql_stmt_fetch(stmt);
   DIE_UNLESS(rc==MYSQL_NO_DATA);
 
-  rc = mysql_stmt_fetch(stmt);
+  rc= mysql_stmt_fetch(stmt);
   DIE_UNLESS(rc==MYSQL_NO_DATA);
 
   mysql_stmt_close(stmt);
Thread
bk commit into 5.0 tree (georg:1.1946)Georg Richter16 Jul