1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-10 01:22:48 +03:00

Merge pull request #2275 from mariadb-corporation/arm-arn-fix

chars are unsigned on arm by default
This commit is contained in:
Roman Nozdrin
2022-02-18 15:52:47 +02:00
committed by GitHub

View File

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