summaryrefslogtreecommitdiff
path: root/storage/xtradb/handler
diff options
context:
space:
mode:
authorsjaakola <seppo.jaakola@iki.fi>2017-01-16 16:10:37 +0200
committerJan Lindström <jan.lindstrom@mariadb.com>2017-08-11 14:10:30 +0300
commit0ddf32c840b8b30957104d2a5b59d4edd9dcc297 (patch)
tree41a634e523e5a78340dbb1f6db2ef8b09b58e825 /storage/xtradb/handler
parent790a8274cd0ea471a81652aef932191660deb64b (diff)
downloadmariadb-git-0ddf32c840b8b30957104d2a5b59d4edd9dcc297.tar.gz
refs: MW-322 * generating fake trx id for CTAS, requires trx_sys mutex protection to be safe for concurrent CTAS processors
Diffstat (limited to 'storage/xtradb/handler')
-rw-r--r--storage/xtradb/handler/ha_innodb.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc
index 8d48f63b962..ac2bf1010d6 100644
--- a/storage/xtradb/handler/ha_innodb.cc
+++ b/storage/xtradb/handler/ha_innodb.cc
@@ -19247,7 +19247,7 @@ wsrep_fake_trx_id(
mutex_enter(&trx_sys->mutex);
trx_id_t trx_id = trx_sys_get_new_trx_id();
mutex_exit(&trx_sys->mutex);
-
+ WSREP_DEBUG("innodb fake trx id: %lu thd: %s", trx_id, wsrep_thd_query(thd));
(void *)wsrep_ws_handle_for_trx(wsrep_thd_ws_handle(thd), trx_id);
}