mirror of
https://github.com/MariaDB/server.git
synced 2026-05-11 09:30:23 +02:00
Fix several compile warnings on Windows
This commit is contained in:
parent
7668a79a88
commit
66905f6dcb
7 changed files with 27 additions and 16 deletions
|
|
@ -95,9 +95,9 @@ public:
|
|||
ha_rows records_in_range(uint inx, key_range *min_key,
|
||||
key_range *max_key);
|
||||
|
||||
double scan_time() { return nvalues(); }
|
||||
double read_time(uint index, uint ranges, ha_rows rows) { return rows; }
|
||||
double keyread_time(uint index, uint ranges, ha_rows rows) { return rows; }
|
||||
double scan_time() { return (double)nvalues(); }
|
||||
double read_time(uint index, uint ranges, ha_rows rows) { return (double)rows; }
|
||||
double keyread_time(uint index, uint ranges, ha_rows rows) { return (double)rows; }
|
||||
|
||||
private:
|
||||
void set(uchar *buf);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue