You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-05 16:15:50 +03:00
MCOL-4010 - fixes compilation errors on x64 w/-Werror
Merged in Sergei's patch.
This commit is contained in:
@@ -433,7 +433,7 @@ bool writetask()
|
||||
|
||||
WriteTask w(clientSock, hdr->payloadLen);
|
||||
ssize_t result = ::write(sessionSock, cmd, hdr->payloadLen);
|
||||
assert(result==(hdr->payloadLen));
|
||||
assert(result == static_cast<ssize_t>(hdr->payloadLen));
|
||||
|
||||
w.run();
|
||||
|
||||
@@ -1065,7 +1065,7 @@ bool copytask(bool connectionTest=false)
|
||||
len -= 2;
|
||||
|
||||
ssize_t result = ::write(sessionSock, buf, len);
|
||||
assert(result==len);
|
||||
assert(result==static_cast<ssize_t>(len));
|
||||
|
||||
int err=0;
|
||||
|
||||
@@ -1805,7 +1805,7 @@ void shortMsg()
|
||||
|
||||
WriteTask w(clientSock, hdrWrite->payloadLen);
|
||||
ssize_t result = ::write(sessionSock, cmdWrite, hdrWrite->payloadLen);
|
||||
assert(result==(hdrWrite->payloadLen));
|
||||
assert(result==static_cast<ssize_t>(hdrWrite->payloadLen));
|
||||
|
||||
w.run();
|
||||
|
||||
|
Reference in New Issue
Block a user