Commit e0f42d32 authored by Sergei Petrunia's avatar Sergei Petrunia

Fix compilation on windows part #3

parent 00377dba
...@@ -372,7 +372,7 @@ int Histogram_json_hb::find_bucket(Field *field, const uchar *lookup_val, ...@@ -372,7 +372,7 @@ int Histogram_json_hb::find_bucket(Field *field, const uchar *lookup_val,
bool equal_is_less) bool equal_is_less)
{ {
int low= 0; int low= 0;
int high= histogram_bounds.size() - 1; int high= (int)histogram_bounds.size() - 1;
int middle; int middle;
while (low + 1 < high) while (low + 1 < high)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment