You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Fixed an old bug in the HDFS code in the BRM. Journal file supposed
to be opened for appending.
This commit is contained in:
@ -143,7 +143,7 @@ SlaveComm::SlaveComm(string hostname, SlaveDBRMNode* s) :
|
|||||||
if (true || IDBPolicy::useHdfs())
|
if (true || IDBPolicy::useHdfs())
|
||||||
{
|
{
|
||||||
journalh = IDBDataFile::open(
|
journalh = IDBDataFile::open(
|
||||||
IDBPolicy::getType(filename, IDBPolicy::WRITEENG), filename, "w+b", 0);
|
IDBPolicy::getType(filename, IDBPolicy::WRITEENG), filename, "a", 0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user