mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
make thd_get_error_context_description() to show not just thd->proc_info, but exactly the same thread state that SHOW PROCESSLIST shows.
9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
create table t1 (a int) engine=innodb;
|
|
start transaction;
|
|
insert t1 values (1);
|
|
state from show engine innodb status
|
|
|
|
state from show processlist
|
|
|
|
drop table t1;
|