mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
type conversion fixed to get rid of warnings
sql/opt_range.cc: type conversion fixed
This commit is contained in:
parent
e1dc86b079
commit
8262c4f445
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue