diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2019-04-18 14:43:40 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-04-25 15:06:40 +0400 |
commit | 07140f171d8c81d241ef4fd7e8e53afa2d269b16 (patch) | |
tree | 18201b76c97e4511a9cb8967c11031bec52f6a60 /sql/transaction.h | |
parent | ca7fbcea6c4fe13c295cf43b80d05351aba59e95 (diff) | |
download | mariadb-git-07140f171d8c81d241ef4fd7e8e53afa2d269b16.tar.gz |
Just move, no code changes otherwise.
Part of MDEV-7974 - backport fix for mysql bug#12161 (XA and binlog)
Diffstat (limited to 'sql/transaction.h')
-rw-r--r-- | sql/transaction.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sql/transaction.h b/sql/transaction.h index 7e34693a2eb..5eaa2b00027 100644 --- a/sql/transaction.h +++ b/sql/transaction.h @@ -24,6 +24,8 @@ class THD; +void trans_track_end_trx(THD *thd); + bool trans_begin(THD *thd, uint flags= 0); bool trans_commit(THD *thd); bool trans_commit_implicit(THD *thd); @@ -37,12 +39,6 @@ bool trans_savepoint(THD *thd, LEX_CSTRING name); bool trans_rollback_to_savepoint(THD *thd, LEX_CSTRING name); bool trans_release_savepoint(THD *thd, LEX_CSTRING name); -bool trans_xa_start(THD *thd); -bool trans_xa_end(THD *thd); -bool trans_xa_prepare(THD *thd); -bool trans_xa_commit(THD *thd); -bool trans_xa_rollback(THD *thd); - void trans_reset_one_shot_chistics(THD *thd); #endif /* TRANSACTION_H */ |