Navigation Menu

Skip to content

Commit

Permalink
[mysql56] ha_rows is long long unsigned int.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Nov 27, 2011
1 parent ab791c1 commit 0f16e63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mroonga.cc
Expand Up @@ -4402,7 +4402,7 @@ ha_rows ha_mroonga::records_in_range(uint key_nr, key_range *range_min, key_rang
} else {
row_count = storage_records_in_range(key_nr, range_min, range_max);
}
DBUG_PRINT("info", ("mroonga: row_count=%lu", row_count));
DBUG_PRINT("info", ("mroonga: row_count=%llu", row_count));
DBUG_RETURN(row_count);
}

Expand Down

0 comments on commit 0f16e63

Please sign in to comment.