You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-18 13:54:11 +03:00
Removed some redundant assertions around deleting files,
commented the one in replicator::remove() to get ready for milestone-2, and to make the unit test work.
This commit is contained in:
@@ -195,11 +195,11 @@ int Replicator::remove(const boost::filesystem::path &filename, Flags flags)
|
||||
|
||||
try
|
||||
{
|
||||
#ifndef NDEBUG
|
||||
assert(boost::filesystem::remove_all(filename) > 0);
|
||||
#else
|
||||
//#ifndef NDEBUG
|
||||
// assert(boost::filesystem::remove_all(filename) > 0);
|
||||
//#else
|
||||
boost::filesystem::remove_all(filename);
|
||||
#endif
|
||||
//#endif
|
||||
}
|
||||
catch(boost::filesystem::filesystem_error &e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user