You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-4010 - fixes compilation errors on x64 w/-Werror
Merged in Sergei's patch.
This commit is contained in:
@ -74,7 +74,7 @@ bool WriteTask::run()
|
||||
|
||||
while (readCount < cmd->count)
|
||||
{
|
||||
uint toRead = min(cmd->count - readCount, bufsize);
|
||||
uint toRead = min(static_cast<uint>(cmd->count - readCount), bufsize);
|
||||
success = read(&databuf[0], toRead);
|
||||
check_error("WriteTask read data", false);
|
||||
if (success==0)
|
||||
|
Reference in New Issue
Block a user