1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

fixed type conversion warnings revealed by bug 30639

This commit is contained in:
gkodinov/kgeorge@macbook.local
2007-09-21 10:15:16 +02:00
parent 7dbcdf9a64
commit 4eee02dd3d
10 changed files with 23 additions and 23 deletions

View File

@ -6126,7 +6126,7 @@ make_join_select(JOIN *join,SQL_SELECT *select,COND *cond)
/* Fix for EXPLAIN */
if (sel->quick)
join->best_positions[i].records_read= sel->quick->records;
join->best_positions[i].records_read= (double)sel->quick->records;
}
else
{