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

More fixes around sync, error handling, and logging.

This commit is contained in:
Patrick LeBlanc
2019-04-05 16:38:37 -05:00
parent 1879499ad3
commit 6f234f45c0
6 changed files with 62 additions and 33 deletions

View File

@@ -1329,8 +1329,8 @@ void IOCCopyFile1()
assert(err == 8192);
assert(memcmp(buf1, buf2, 8192) == 0);
ioc->unlink("copyfile1");
ioc->unlink("copyfile2");
assert(ioc->unlink("copyfile1") == 0);
assert(ioc->unlink("copyfile2") == 0);
assert(cache->getCurrentCacheSize() == 0);
cout << "IOC copy file 1 OK" << endl;
}
@@ -1390,8 +1390,8 @@ void IOCCopyFile3()
assert(err == 8192);
assert(memcmp(buf1, buf2, 8192) == 0);
ioc->unlink("copyfile3");
ioc->unlink("copyfile4");
assert(ioc->unlink("copyfile3") == 0);
assert(ioc->unlink("copyfile4") == 0);
assert(cache->getCurrentCacheSize() == 0);
cout << "IOC copy file 3 OK" << endl;
}