1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-27 09:01:50 +03:00

Renamed transcation_context to transaction

This commit is contained in:
Teemu Ollakka
2018-06-17 10:04:00 +03:00
parent dd28b173ab
commit 790c2bec4e
25 changed files with 382 additions and 382 deletions

View File

@ -39,7 +39,7 @@ namespace db
}
bool active() const { return cc_ != nullptr; }
void start(client* cc);
void apply(const wsrep::transaction_context&);
void apply(const wsrep::transaction&);
void commit();
void rollback();
db::client* client() { return cc_; }
@ -49,7 +49,7 @@ namespace db
db::storage_engine& se_;
db::client* cc_;
};
void bf_abort_some(const wsrep::transaction_context& tc);
void bf_abort_some(const wsrep::transaction& tc);
long long bf_aborts() const { return bf_aborts_; }
private:
wsrep::default_mutex mutex_;