You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-13 23:02:14 +03:00
Implemented IOC::open() + updated unit test
This commit is contained in:
@@ -134,8 +134,12 @@ bool opentask()
|
||||
assert(_stat->st_size == 0);
|
||||
|
||||
/* verify the file is there */
|
||||
assert(boost::filesystem::exists(filename));
|
||||
::unlink(filename);
|
||||
string metaPath = Config::get()->getValue("ObjectStorage", "metadata_path");
|
||||
assert(!metaPath.empty());
|
||||
metaPath += string("/") + filename + ".meta";
|
||||
|
||||
assert(boost::filesystem::exists(metaPath));
|
||||
::unlink(metaPath.c_str());
|
||||
cout << "opentask OK" << endl;
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user