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
Made the BRM not save a snapshot after every transaction.
This commit is contained in:
@ -1891,7 +1891,7 @@ void SlaveComm::do_vbRollback1(ByteStream& msg)
|
|||||||
if (!standalone)
|
if (!standalone)
|
||||||
master.write(reply);
|
master.write(reply);
|
||||||
|
|
||||||
takeSnapshot = true;
|
doSaveDelta = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlaveComm::do_vbRollback2(ByteStream& msg)
|
void SlaveComm::do_vbRollback2(ByteStream& msg)
|
||||||
@ -1930,7 +1930,7 @@ void SlaveComm::do_vbRollback2(ByteStream& msg)
|
|||||||
if (!standalone)
|
if (!standalone)
|
||||||
master.write(reply);
|
master.write(reply);
|
||||||
|
|
||||||
takeSnapshot = true;
|
doSaveDelta = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlaveComm::do_vbCommit(ByteStream& msg)
|
void SlaveComm::do_vbCommit(ByteStream& msg)
|
||||||
@ -1962,7 +1962,7 @@ void SlaveComm::do_vbCommit(ByteStream& msg)
|
|||||||
if (!standalone)
|
if (!standalone)
|
||||||
master.write(reply);
|
master.write(reply);
|
||||||
|
|
||||||
takeSnapshot = true;
|
doSaveDelta = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlaveComm::do_undo()
|
void SlaveComm::do_undo()
|
||||||
|
Reference in New Issue
Block a user