List:Commits« Previous MessageNext Message »
From:<gshchepa Date:November 6 2007 9:17pm
Subject:bk commit into 6.0 tree (gshchepa:1.2673)
View as plain text  
Below is the list of changes that have just been committed into a local
6.0 repository of uchum. When uchum 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-11-07 01:17:29+04:00, gshchepa@stripped +1 -0
  ha_archive.cc:
    Warning removal fix.

  storage/archive/ha_archive.cc@stripped, 2007-11-07 01:16:12+04:00, gshchepa@stripped +1 -1
    Warning removal fix.

diff -Nrup a/storage/archive/ha_archive.cc b/storage/archive/ha_archive.cc
--- a/storage/archive/ha_archive.cc	2007-10-28 02:14:27 +04:00
+++ b/storage/archive/ha_archive.cc	2007-11-07 01:16:12 +04:00
@@ -1131,7 +1131,7 @@ int ha_archive::rnd_pos(uchar * buf, uch
   DBUG_ENTER("ha_archive::rnd_pos");
   ha_statistic_increment(&SSV::ha_read_rnd_next_count);
   current_position= (my_off_t)my_get_ptr(pos, ref_length);
-  if (azseek(&archive, (size_t)current_position, SEEK_SET) == (my_off_t)(-1L))
+  if (azseek(&archive, (size_t)current_position, SEEK_SET) == (size_t)(-1L))
     DBUG_RETURN(HA_ERR_CRASHED_ON_USAGE);
   DBUG_RETURN(get_row(&archive, buf));
 }
Thread
bk commit into 6.0 tree (gshchepa:1.2673)gshchepa6 Nov