1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Fix some -Wsign-conversion

InnoDB was using int64_t instead of ha_rows (unsigned 64-bit).
This commit is contained in:
Marko Mäkelä
2018-04-29 17:39:48 +03:00
parent baa5a43d8c
commit b2c4740034
13 changed files with 65 additions and 69 deletions

View File

@@ -628,7 +628,7 @@ public:
{
char *buff= Ptr + str_length;
char *end= ll2str(i, buff, radix, 0);
str_length+= (int) (end-buff);
str_length+= uint32(end-buff);
}
/* Inline (general) functions used by the protocol functions */