1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Cleaned up client_state interface.

This commit is contained in:
Teemu Ollakka
2018-06-18 18:55:38 +03:00
parent cf231bdf2d
commit 60fb119fa1
8 changed files with 45 additions and 156 deletions

View File

@ -121,7 +121,9 @@ void db::client::run_one_transaction()
err = err || client_state_.after_commit();
if (err)
{
client_state_.rollback();
client_state_.before_rollback();
se_trx_.rollback();
client_state_.after_rollback();
}
return err;
});