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
Fixed a few random things.
This commit is contained in:
@@ -187,6 +187,9 @@ int Replicator::remove(const boost::filesystem::path &filename, Flags flags)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
if (flags & NO_LOCAL)
|
||||
return 0; // not implemented yet
|
||||
|
||||
try
|
||||
{
|
||||
boost::filesystem::remove_all(filename);
|
||||
@@ -202,6 +205,9 @@ int Replicator::remove(const boost::filesystem::path &filename, Flags flags)
|
||||
|
||||
int Replicator::remove(const char *filename, Flags flags)
|
||||
{
|
||||
if (flags & NO_LOCAL)
|
||||
return 0; // not implemented yet
|
||||
|
||||
boost::filesystem::path p(filename);
|
||||
return remove(p);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user