mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +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:
@@ -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;
|
||||
|
||||
@@ -148,7 +148,7 @@ connection cn1;
|
||||
create table t1(id int) engine=myisam;
|
||||
insert delayed into t1 values (1), (2);
|
||||
connection default;
|
||||
--echo # Waiting until ALTER TABLE is blocked.
|
||||
--echo # Waiting until INSERT DELAYED thread does the insert.
|
||||
let $wait_condition= SELECT COUNT(*) = 2 FROM t1;
|
||||
--source include/wait_condition.inc
|
||||
drop table t1;
|
||||
|
||||
Reference in New Issue
Block a user