List:Internals« Previous MessageNext Message »
From:guilhem Date:May 3 2004 9:35pm
Subject:bk commit into 4.1 tree (guilhem:1.1806)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of guilhem. When guilhem 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://www.mysql.com/doc/I/n/Installing_source_tree.html

ChangeSet
  1.1806 04/05/03 23:35:11 guilhem@stripped +2 -0
  trying to remove Windows compiler warnings (Miguel, could you please check if it's better now?)

  sql/ha_innodb.cc
    1.124 04/05/03 23:34:33 guilhem@stripped +0 -1
    removed unused variable

  innobase/eval/eval0eval.c
    1.5 04/05/03 23:34:32 guilhem@stripped +1 -1
    explicit cast

# 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:	guilhem
# Host:	gbichot2.local
# Root:	/home/mysql_src/4.1-clean/mysql-4.1

--- 1.4/innobase/eval/eval0eval.c	Tue Apr  6 15:14:38 2004
+++ 1.5/innobase/eval/eval0eval.c	Mon May  3 23:34:32 2004
@@ -725,7 +725,7 @@
 				uint_val = (ulint) int_val;
 			}
 			for (tmp = int_len; uint_val > 0; uint_val /= 10) {
-				data[--tmp] = '0' + (uint_val % 10);
+				data[--tmp] = '0' + (byte)(uint_val % 10);
 			}
 		}
 

--- 1.123/sql/ha_innodb.cc	Tue Apr 27 14:33:26 2004
+++ 1.124/sql/ha_innodb.cc	Mon May  3 23:34:33 2004
@@ -4780,7 +4780,6 @@
 /*===============*/
 	THD*	thd)	/* in: the MySQL query thread of the caller */
 {
-        char*           buf;
         Protocol        *protocol= thd->protocol;
 	trx_t*		trx;
 
Thread
bk commit into 4.1 tree (guilhem:1.1806)guilhem3 May