List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:February 22 2007 8:33pm
Subject:bk commit into 5.0 tree (cmiller:1.2387)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of cmiller. When cmiller 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, 2007-02-22 14:33:51-05:00, cmiller@stripped +1 -0
  Use a cast to disambuguate which PROTOCOL::store() to use.

  sql/sql_profile.cc@stripped, 2007-02-22 14:33:50-05:00, cmiller@stripped +1 -1
    Use a cast to disambuguate which PROTOCOL::store() to use.

# 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:	cmiller
# Host:	zippy.cornsilk.net
# Root:	/home/cmiller/work/mysql/mysql-5.0-community

--- 1.1/sql/sql_profile.cc	2007-02-22 14:33:55 -05:00
+++ 1.2/sql/sql_profile.cc	2007-02-22 14:33:55 -05:00
@@ -453,7 +453,7 @@ bool QUERY_PROFILE::show(uint options)
         protocol->store(entry->function, strlen(entry->function),
                         system_charset_info);        
         protocol->store(entry->file, strlen(entry->file), system_charset_info);
-        protocol->store(entry->line);
+        protocol->store((uint32) entry->line);
       } else {
         protocol->store_null();
         protocol->store_null();
Thread
bk commit into 5.0 tree (cmiller:1.2387)Chad MILLER22 Feb