1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00

fix path in copy test

This commit is contained in:
benthompson15
2019-09-23 15:02:06 -05:00
parent f62ea7e30e
commit 90a3a06b0b

View File

@@ -1550,8 +1550,8 @@ void IOCCopyFile2()
bf::path fullPath = homepath / prefix / "not-there";
const char *source = fullPath.string().c_str();
fullPath = homepath / prefix / "not-there2";
const char *dest = fullPath.string().c_str();
bf::path fullPath2 = homepath / prefix / "not-there2";
const char *dest = fullPath2.string().c_str();
bf::path metaPath = ioc->getMetadataPath();
bf::remove(metaPath/prefix/"not-there.meta");