1
0
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:
Sergei Petrunia
2021-09-04 18:18:19 +03:00
parent 00377dbae8
commit e0f42d32e5

View File

@@ -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)