List:Commits« Previous MessageNext Message »
From:holyfoot Date:October 23 2007 12:17pm
Subject:bk commit into 5.0 tree (holyfoot:1.2552)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of hf. When hf 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-23 15:17:45+05:00, holyfoot@stripped +1 -0
  type conversion added to get rid of warnings

  sql/opt_range.cc@stripped, 2007-10-23 15:17:44+05:00, holyfoot@stripped +2 -2
    type conversion fix

diff -Nrup a/sql/opt_range.cc b/sql/opt_range.cc
--- a/sql/opt_range.cc	2007-10-23 14:27:09 +05:00
+++ b/sql/opt_range.cc	2007-10-23 15:17:44 +05:00
@@ -8428,8 +8428,8 @@ void cost_group_min_max(TABLE* table, KE
 
   DBUG_PRINT("info",
              ("table rows: %u  keys/block: %u  keys/group: %u  result rows: %lu  blocks:
%u",
-              table_records, keys_per_block, keys_per_group, (ulong) *records,
-              num_blocks));
+              (ulong)table_records, keys_per_block, keys_per_group,
+              (ulong) *records, num_blocks));
   DBUG_VOID_RETURN;
 }
 
Thread
bk commit into 5.0 tree (holyfoot:1.2552)holyfoot23 Oct