diff options
author | Andrei Elkin <andrei.elkin@mariadb.com> | 2019-12-27 16:04:01 +0200 |
---|---|---|
committer | Andrei Elkin <andrei.elkin@mariadb.com> | 2019-12-27 16:04:01 +0200 |
commit | 09b5ecaee1eafe4616be1f29b24338483788625b (patch) | |
tree | af691c99322a9a09e1929abd4b88a30fa1557074 | |
parent | abf9e4d4f00634ffb3fe90a78afac2c808b9dcd6 (diff) | |
download | mariadb-git-andrei-10.4-XA.tar.gz |
server xid correctedandrei-10.4-XA
-rw-r--r-- | sql/log_event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 17beeace7b8..1cfb838c2a2 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -3062,7 +3062,7 @@ public: #ifdef MYSQL_SERVER Xid_log_event(THD* thd_arg, my_xid x, bool direct): - Xid_apply_log_event(thd_arg) + Xid_apply_log_event(thd_arg), xid(x) { if (direct) cache_type= Log_event::EVENT_NO_CACHE; |