A cleanup for MDEV-8844: Fixing compilation failure on Windows

Fixing lossy type conversions:
- from int64 to int
- from size_t to uint
This commit is contained in:
Alexander Barkov 2019-12-07 18:17:08 +04:00
commit d30dbaa20d
3 changed files with 6 additions and 5 deletions

View file

@ -531,7 +531,7 @@ public:
*/
bool copy_printable_hhhh(CHARSET_INFO *to_cs,
CHARSET_INFO *from_cs,
const char *from, uint32 from_length);
const char *from, size_t from_length);
bool append_ulonglong(ulonglong val);
bool append_longlong(longlong val);