List:Commits« Previous MessageNext Message »
From:kgeorge Date:October 2 2007 2:45pm
Subject:bk commit into 5.0 tree (gkodinov:1.2547)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of kgeorge. When kgeorge 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-10-02 17:45:49+03:00, gkodinov@stripped +1 -0
  fixed a warning in the fix for bug 28702

  sql/sql_select.cc@stripped, 2007-10-02 17:45:48+03:00, gkodinov@stripped +1 -1
    fixed a warning in the fix for bug 28702

diff -Nrup a/sql/sql_select.cc b/sql/sql_select.cc
--- a/sql/sql_select.cc	2007-10-02 14:57:09 +03:00
+++ b/sql/sql_select.cc	2007-10-02 17:45:48 +03:00
@@ -15493,7 +15493,7 @@ TABLE_LIST::print_index_hint(THD *thd, S
   List_iterator_fast<String> li(indexes);
   String *idx;
   bool first= 1;
-  int find_length= strlen(primary_key_name);
+  size_t find_length= strlen(primary_key_name);
 
   str->append (' ');
   str->append (hint, hint_length);
Thread
bk commit into 5.0 tree (gkodinov:1.2547)kgeorge2 Oct