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

Merge remote-tracking branch 'upstream/develop' into S3-project

This commit is contained in:
Patrick LeBlanc
2019-06-24 15:41:10 -05:00
179 changed files with 4688 additions and 311 deletions

View File

@ -1891,7 +1891,6 @@ void SlaveComm::do_vbRollback1(ByteStream& msg)
if (!standalone)
master.write(reply);
//takeSnapshot = true;
doSaveDelta = true;
}
@ -1931,7 +1930,6 @@ void SlaveComm::do_vbRollback2(ByteStream& msg)
if (!standalone)
master.write(reply);
//takeSnapshot = true;
doSaveDelta = true;
}
@ -1964,7 +1962,6 @@ void SlaveComm::do_vbCommit(ByteStream& msg)
if (!standalone)
master.write(reply);
//takeSnapshot = true;
doSaveDelta = true;
}
@ -2065,7 +2062,7 @@ void SlaveComm::do_confirm()
saveFileToggle = !saveFileToggle;
const char* filename = journalName.c_str();
uint32_t utmp = ::umask(0);
//uint32_t utmp = ::umask(0);
delete journalh;
journalh = IDBDataFile::open(
IDBPolicy::getType(filename, IDBPolicy::WRITEENG), filename, "w+b", 0);