1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-18 13:54:11 +03:00

Important fix in IOCoordinator. Added the start of some

unit tests.
This commit is contained in:
Patrick LeBlanc
2019-01-30 18:29:17 -06:00
parent 33edeaf4b0
commit 76fe86a0f7
6 changed files with 124 additions and 10 deletions

View File

@@ -34,14 +34,14 @@ void OpenTask::run()
if (getLength() > 1023)
{
handleError("OpenTask read", ENAMETOOLONG);
handleError("OpenTask read1", ENAMETOOLONG);
return;
}
success = read(buf, getLength());
if (!success)
{
handleError("OpenTask read", errno);
handleError("OpenTask read2", errno);
return;
}