diff options
Diffstat (limited to 'sql/session_tracker.cc')
-rw-r--r-- | sql/session_tracker.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/session_tracker.cc b/sql/session_tracker.cc index fb68ec44a91..129d909c045 100644 --- a/sql/session_tracker.cc +++ b/sql/session_tracker.cc @@ -741,7 +741,7 @@ bool Transaction_state_tracker::store(THD *thd, String *buf) if ((thd->variables.session_track_transaction_info == TX_TRACK_CHISTICS) && (tx_changed & TX_CHG_CHISTICS)) { - bool is_xa= thd->transaction.xid_state.is_explicit_XA(); + bool is_xa= thd->transaction->xid_state.is_explicit_XA(); size_t start; /* 2 length by 1 byte and code */ @@ -918,7 +918,7 @@ bool Transaction_state_tracker::store(THD *thd, String *buf) if ((tx_curr_state & TX_EXPLICIT) && is_xa) { - XID *xid= thd->transaction.xid_state.get_xid(); + XID *xid= thd->transaction->xid_state.get_xid(); long glen, blen; buf->append(STRING_WITH_LEN("XA START")); |