Commit 14c43b98 authored by holyfoot/hf@hfmain.(none)'s avatar holyfoot/hf@hfmain.(none)
Browse files

Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-5.0-opt

into  mysql.com:/home/hf/work/30638/my50-30638
parents 7fe41df0 36092b37
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -8427,9 +8427,9 @@ void cost_group_min_max(TABLE* table, KEY *index_info, uint used_key_parts,
  *records= num_groups;

  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));
             ("table rows: %lu  keys/block: %u  keys/group: %u  result rows: %lu  blocks: %u",
              (ulong)table_records, keys_per_block, keys_per_group,
              (ulong) *records, num_blocks));
  DBUG_VOID_RETURN;
}