[Commits] 1f2ff25: Fixed embedded server.
Oleksandr Byelkin
sanja at mariadb.com
Thu Sep 8 23:41:51 EEST 2016
revision-id: 1f2ff25eba6c089b2698cd0dab96155ccbf2afd2 (mariadb-10.1.8-242-g1f2ff25)
parent(s): effb65bc863da0f1115e16ef5f11d11a13cdc7a0
committer: Oleksandr Byelkin
timestamp: 2016-09-08 22:41:50 +0200
message:
Fixed embedded server.
---
sql/transaction.cc | 9 +++++----
sql/transaction.h | 4 ----
2 files changed, 5 insertions(+), 8 deletions(-)
diff --git a/sql/transaction.cc b/sql/transaction.cc
index d728ea2..9bacfb8 100644
--- a/sql/transaction.cc
+++ b/sql/transaction.cc
@@ -38,6 +38,9 @@ static void trans_track_end_trx(THD *thd)
thd->session_tracker.get_tracker(TRANSACTION_INFO_TRACKER))->end_trx(thd);
}
}
+#else
+#define trans_track_end_trx(A) do{}while(0)
+#endif //EMBEDDED_LIBRARY
/**
@@ -46,6 +49,7 @@ static void trans_track_end_trx(THD *thd)
*/
void trans_reset_one_shot_chistics(THD *thd)
{
+#ifndef EMBEDDED_LIBRARY
if (thd->variables.session_track_transaction_info > TX_TRACK_NONE)
{
Transaction_state_tracker *tst= (Transaction_state_tracker *)
@@ -54,13 +58,10 @@ void trans_reset_one_shot_chistics(THD *thd)
tst->set_read_flags(thd, TX_READ_INHERIT);
tst->set_isol_level(thd, TX_ISOL_INHERIT);
}
-
+#endif //EMBEDDED_LIBRARY
thd->tx_isolation= (enum_tx_isolation) thd->variables.tx_isolation;
thd->tx_read_only= thd->variables.tx_read_only;
}
-#else
-#define trans_track_end_trx(A) do{}while(0)
-#endif //EMBEDDED_LIBRARY
/* Conditions under which the transaction state must not change. */
static bool trans_check(THD *thd)
diff --git a/sql/transaction.h b/sql/transaction.h
index 040f1a4..90de11a 100644
--- a/sql/transaction.h
+++ b/sql/transaction.h
@@ -44,10 +44,6 @@ bool trans_xa_prepare(THD *thd);
bool trans_xa_commit(THD *thd);
bool trans_xa_rollback(THD *thd);
-#ifndef EMBEDDED_LIBRARY
void trans_reset_one_shot_chistics(THD *thd);
-#else
-#define trans_reset_one_shot_chistics(A) do{}while(0)
-#endif //EMBEDDED_LIBRARY
#endif /* TRANSACTION_H */
More information about the commits
mailing list