Details
Description
--source include/galera_cluster.inc
|
CREATE TABLE t (a CHAR(1) KEY); |
START TRANSACTION; |
HANDLER t OPEN; |
--disconnect node_1 |
Leads to
mysqld: /home/sciascid/Workspace/src/mariadb-server-test/sql/sql_base.cc:1054: void close_thread_table(THD*, TABLE**): Assertion `thd->mdl_context.is_lock_owner(MDL_key::TABLE, table->s->db.str, table->s->table_name.str, MDL_SHARED)' failed.
|
This bug is not XA specific. The same reproduces on 10.4 as well, using regular transactions:
CREATE TABLE t (a CHAR(1) KEY);
START TRANSACTION;
HANDLER t OPEN;
The above fails in the exact same way.