List:Commits« Previous MessageNext Message »
From:hezx Date:January 6 2008 1:16pm
Subject:bk commit into 5.0 tree (hezx:1.2564)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of hezx. When hezx 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-01-06 20:16:28+08:00, hezx@stripped +1 -0
  Replace return with DBUG_RETURN

  sql/sql_repl.cc@stripped, 2008-01-06 20:16:25+08:00, hezx@stripped +1 -1
    Replace return with DBUG_RETURN

diff -Nrup a/sql/sql_repl.cc b/sql/sql_repl.cc
--- a/sql/sql_repl.cc	2007-12-22 04:37:05 +08:00
+++ b/sql/sql_repl.cc	2008-01-06 20:16:25 +08:00
@@ -1578,7 +1578,7 @@ int log_loaded_block(IO_CACHE* file)
   lf_info= (LOAD_FILE_INFO*) file->arg;
   if (lf_info->last_pos_in_file != HA_POS_ERROR &&
       lf_info->last_pos_in_file >= my_b_get_pos_in_file(file))
-    return 0;
+    DBUG_RETURN(0);
   
   for (block_len= my_b_get_bytes_in_buffer(file); block_len > 0;
        buffer += min(block_len, max_event_size),
Thread
bk commit into 5.0 tree (hezx:1.2564)hezx6 Jan