You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
filesystem ambiguaty
This commit is contained in:
@ -800,13 +800,13 @@ int RedistributeWorkerThread::sendData()
|
||||
// msg that IDBFileSystem::copyFile() currently swallows.
|
||||
try
|
||||
{
|
||||
filesystem::copy_file(sourceName, destName);
|
||||
boost::filesystem::copy_file(sourceName, destName);
|
||||
}
|
||||
|
||||
#if BOOST_VERSION >= 105200
|
||||
catch (filesystem::filesystem_error& e)
|
||||
catch (boost::filesystem::filesystem_error& e)
|
||||
#else
|
||||
catch (filesystem::basic_filesystem_error<filesystem::path>& e)
|
||||
catch (boost::filesystem::basic_filesystem_error<filesystem::path>& e)
|
||||
#endif
|
||||
{
|
||||
fErrorCode = RED_EC_COPY_FILE_FAIL;
|
||||
|
Reference in New Issue
Block a user