diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2019-04-19 19:17:27 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-04-25 15:06:40 +0400 |
commit | b7fd7ce2863eab91d6a1f72b7473f936a729d94f (patch) | |
tree | 29eaf614f6a3894fb6fdc314c61fcc58e2b702a3 /sql/session_tracker.cc | |
parent | 228514e52f13661b195e4c450f33888842f04241 (diff) | |
download | mariadb-git-b7fd7ce2863eab91d6a1f72b7473f936a729d94f.tar.gz |
Moved normal transaction xid to implicit_xid
Part of MDEV-7974 - backport fix for mysql bug#12161 (XA and binlog)
Diffstat (limited to 'sql/session_tracker.cc')
-rw-r--r-- | sql/session_tracker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/session_tracker.cc b/sql/session_tracker.cc index d6cc0552df6..0088f1b20de 100644 --- a/sql/session_tracker.cc +++ b/sql/session_tracker.cc @@ -1285,7 +1285,7 @@ bool Transaction_state_tracker::store(THD *thd, String *buf) if ((tx_curr_state & TX_EXPLICIT) && is_xa) { - XID *xid= &thd->transaction.xid_state.xid; + XID *xid= thd->transaction.xid_state.get_xid(); long glen, blen; buf->append(STRING_WITH_LEN("XA START")); |