mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Fix compilation on windows part #3
This commit is contained in:
@@ -372,7 +372,7 @@ int Histogram_json_hb::find_bucket(Field *field, const uchar *lookup_val,
|
||||
bool equal_is_less)
|
||||
{
|
||||
int low= 0;
|
||||
int high= histogram_bounds.size() - 1;
|
||||
int high= (int)histogram_bounds.size() - 1;
|
||||
int middle;
|
||||
|
||||
while (low + 1 < high)
|
||||
|
Reference in New Issue
Block a user