1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Changed debugging outputs.

This commit is contained in:
Patrick LeBlanc
2019-07-22 16:25:31 -05:00
parent 45d4a7536b
commit 094e5b554a
2 changed files with 4 additions and 15 deletions

View File

@ -22,7 +22,7 @@
***************************************************************************/
#include <boost/scoped_ptr.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/random_generator.hpp>
#include <boost/uuid/uuid_io.hpp>
@ -4414,6 +4414,8 @@ int ProcessMonitor::getDBRMdata(string *path)
bool journalFile = false;
boost::uuids::uuid u = boost::uuids::random_generator()();
bf::path pTmp = bf::path(*path) / boost::uuids::to_string(u);
if (config::Config::makeConfig()->getConfig("Installation", "DBRootStorageType") != "storagemanager")
bf::create_directories(pTmp);
*path = pTmp.string();
log.writeLog(__LINE__, "Downloading DBRM files to " + *path, LOG_TYPE_DEBUG);