mirror of
https://github.com/MariaDB/server.git
synced 2025-04-22 15:15:41 +02:00

Add `find_thread_by_id_with_thd_data_lock` which will be used only when killing thread. This version needs to take `thd->LOCK_thd_data` lock.
10 lines
291 B
Text
10 lines
291 B
Text
connection node_2;
|
|
connection node_1;
|
|
CREATE TABLE t1 (a INT);
|
|
connect con1,localhost,root,,test;
|
|
INSERT INTO t1 VALUES (1),(2),(3),(4);
|
|
SHOW EXPLAIN FOR $con1;
|
|
ERROR HY000: Target is not running an EXPLAINable command
|
|
connection con1;
|
|
INSERT INTO t1 VALUES (5),(6),(7),(8);
|
|
DROP TABLE t1;
|