mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.6' into 10.11
This commit is contained in:
@ -3115,6 +3115,12 @@ create table t2 (a int) stats_persistent=0, engine=innodb;
|
||||
insert into t1 values (1);
|
||||
insert into t2 values (1);
|
||||
|
||||
connect (con1, localhost, root);
|
||||
# disable innodb purge thread, otherwise it might start purging t2,
|
||||
# and will take an mdl, affecting metadata_lock_info output.
|
||||
start transaction with consistent snapshot;
|
||||
connection default;
|
||||
|
||||
SET DEBUG_SYNC= 'after_open_table_mdl_shared SIGNAL table_opened WAIT_FOR grlwait execute 2';
|
||||
--send update t1,t2 set t1.a=2,t2.a=3
|
||||
|
||||
@ -3160,6 +3166,7 @@ connection default;
|
||||
SET DEBUG_SYNC= 'RESET';
|
||||
drop table t1,t2;
|
||||
disconnect con2;
|
||||
disconnect con1;
|
||||
|
||||
--echo #
|
||||
--echo # Bug#50786 Assertion `thd->mdl_context.trans_sentinel() == __null'
|
||||
|
Reference in New Issue
Block a user