1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

chars are unsigned on arm y default

This commit is contained in:
Leonid Fedorov
2022-02-17 22:23:52 +00:00
parent 9a0bfa012d
commit 6b1c696991

View File

@ -580,7 +580,7 @@ int WEFileReadThread::getNextRow(istream& ifs, char* pBuf, int MaxLen)
const char ESC = fEsc;
bool aTrailEsc = false;
char* pEnd = pBuf;
char aCh = ifs.get();
int aCh = ifs.get();
while (ifs.good())
{