List:Commits« Previous MessageNext Message »
From:tim Date:May 1 2008 1:14am
Subject:bk commit into 5.1 tree (tsmith:1.2596)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of tsmith.  When tsmith 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, 2008-04-30 19:14:41-06:00, tsmith@stripped +1 -0
  Use ulonglong to store row count in libmysld Protocol_text::remove_last_row()
  (fix warnings).

  libmysqld/lib_sql.cc@stripped, 2008-04-30 19:14:40-06:00, tsmith@stripped +1 -1
    Use ulonglong to store row count in Protocol_text::remove_last_row()
    (fix warnings).

diff -Nrup a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc
--- a/libmysqld/lib_sql.cc	2008-04-02 13:00:00 -06:00
+++ b/libmysqld/lib_sql.cc	2008-04-30 19:14:40 -06:00
@@ -848,7 +848,7 @@ void Protocol_text::remove_last_row()
 {
   MYSQL_DATA *data= thd->cur_data;
   MYSQL_ROWS **last_row_hook= &data->data;
-  uint count= data->rows;
+  my_ulonglong count= data->rows;
   DBUG_ENTER("Protocol_text::remove_last_row");
   while (--count)
     last_row_hook= &(*last_row_hook)->next;
Thread
bk commit into 5.1 tree (tsmith:1.2596)tim1 May