diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-07-29 09:09:52 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-07-29 09:09:52 +0200 |
commit | 6ef139780d7a6ae6ea001523b4505de6b5c3a7bc (patch) | |
tree | 2f906094eb0529614434ae6c7bbf27a182479ccb /mysql-test/t/innodb_load_xa.test | |
parent | 0aa40c35ca50f06a4baa9c8bfb6ba9e402bd773b (diff) | |
download | mariadb-git-6ef139780d7a6ae6ea001523b4505de6b5c3a7bc.tar.gz |
MDEV-6497 InnoDB deadlocks on UNINSTALL PLUGIN
Free the trx of the current thd (if any) in innobase_end()
Diffstat (limited to 'mysql-test/t/innodb_load_xa.test')
-rw-r--r-- | mysql-test/t/innodb_load_xa.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/innodb_load_xa.test b/mysql-test/t/innodb_load_xa.test index ab2204133a2..52862151b22 100644 --- a/mysql-test/t/innodb_load_xa.test +++ b/mysql-test/t/innodb_load_xa.test @@ -8,4 +8,11 @@ if (!$HA_INNODB_SO) { } install plugin innodb soname 'ha_innodb'; select engine,support,transactions,xa from information_schema.engines where engine='innodb'; +create table t1 (a int) engine=innodb; +start transaction; +insert t1 values (1); +insert t1 values (2); +commit; +--source include/show_binlog_events.inc +drop table t1; uninstall plugin innodb; |