1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

Made the BRM not save a snapshot after every transaction.

This commit is contained in:
Patrick LeBlanc
2019-06-14 12:33:12 -05:00
parent bcdd76adc0
commit 157d1ef667

View File

@ -1891,7 +1891,7 @@ void SlaveComm::do_vbRollback1(ByteStream& msg)
if (!standalone)
master.write(reply);
takeSnapshot = true;
doSaveDelta = true;
}
void SlaveComm::do_vbRollback2(ByteStream& msg)
@ -1930,7 +1930,7 @@ void SlaveComm::do_vbRollback2(ByteStream& msg)
if (!standalone)
master.write(reply);
takeSnapshot = true;
doSaveDelta = true;
}
void SlaveComm::do_vbCommit(ByteStream& msg)
@ -1962,7 +1962,7 @@ void SlaveComm::do_vbCommit(ByteStream& msg)
if (!standalone)
master.write(reply);
takeSnapshot = true;
doSaveDelta = true;
}
void SlaveComm::do_undo()