mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 11:27:39 +02:00
Fixed some compiler warnings found when compiling for windows.
Changed rows_read and rows_sent status variables to be longlong (to avoid compiler warnings) sql/item_func.cc: Fixed wrong usage of alias sql/item_subselect.cc: Changed buffer size to ulonglong to be able detect buffers bigger than size_t sql/item_subselect.h: Changed buffer size to ulonglong to be able detect buffers bigger than size_t sql/multi_range_read.cc: Fixed compiler warning by using correct type for function argument sql/mysqld.cc: Changed rows_read and rows_sent status variables to be longlong sql/opt_subselect.h: Fixed compiler warning by using correct type for function argument sql/sql_class.cc: Changed rows_read and rows_sent status variables to be longlong sql/sql_class.h: Changed rows_read and rows_sent status variables to be longlong Changed max_nulls_in_row to uint as this is number of columns in row. This fixed some compiler warnings. sql/sql_select.cc: Added casts to avoid compiler warnings storage/heap/ha_heap.cc: Initilize different types separate storage/oqgraph/ha_oqgraph.cc: Fixed argument to store(longlong) to avoid compiler warnings
This commit is contained in:
parent
b9589e2ed7
commit
ab5e4eefd5
11 changed files with 35 additions and 26 deletions
|
|
@ -199,7 +199,8 @@ public:
|
|||
double records= rows2double(s->table->file->stats.records);
|
||||
|
||||
/* The cost is entire index scan cost (divided by 2) */
|
||||
double read_time= s->table->file->keyread_time(key, 1, records);
|
||||
double read_time= s->table->file->keyread_time(key, 1,
|
||||
(ha_rows) records);
|
||||
|
||||
/*
|
||||
Now find out how many different keys we will get (for now we
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue