1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MENT-510 Failing test(s): perfschema.threads_insert_delayed.

The thread_id of the INSERT DELAYED thread should not be set to 0.
This commit is contained in:
Alexey Botchkov
2019-11-27 09:31:47 +04:00
parent 0e403db2c8
commit bfa6db38cd
3 changed files with 4 additions and 3 deletions

View File

@ -221,7 +221,7 @@ connection cn1;
create table t1(id int) engine=myisam;
insert delayed into t1 values (1), (2);
connection default;
# Waiting until ALTER TABLE is blocked.
# Waiting until INSERT DELAYED thread does the insert.
drop table t1;
disconnect cn1;
drop user user1@localhost;