1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-17 01:02:23 +03:00

Fixed read/write/append responses.

This commit is contained in:
Patrick LeBlanc
2019-01-30 13:27:19 -06:00
parent ffbce0ecda
commit 33edeaf4b0
3 changed files with 36 additions and 13 deletions

View File

@@ -58,10 +58,11 @@ void ReadTask::run()
if (count > 0)
outbuf32[1] = count;
else {
int l_errno = errno;
outbuf.resize(16);
outbuf32[1] = 8;
outbuf32[2] = err;
outbuf32[3] = errno;
outbuf32[3] = l_errno;
}
break;
}