1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-27 21:01:50 +03:00

MCOL-3905: slavecomm should use the path provided to the function for openning journal file with the change that added UUID to path for downloaded files during getDBRMData.

This commit is contained in:
benthompson15
2020-04-03 12:41:06 -05:00
parent 9ab09f584f
commit 5c977f2c85

View File

@ -2195,7 +2195,7 @@ int SlaveComm::replayJournal(string prefix)
fName = prefix + "_journal";
}
const char* filename = journalName.c_str();
const char* filename = fName.c_str();
IDBDataFile* journalf = IDBDataFile::open(
IDBPolicy::getType(filename, IDBPolicy::WRITEENG), filename, "rb", 0);