Commit b9e57188 authored by Sergei Golubchik's avatar Sergei Golubchik

MDEV-9679 main.delayed fails sporadically

update main.delayed test after 38b89a61
ALTER TABLE ... COMMENT is no longer blocking,
use a different ALTER TABLE variant.
parent d158ba62
...@@ -379,7 +379,7 @@ SELECT * FROM t1 WHERE a=0; ...@@ -379,7 +379,7 @@ SELECT * FROM t1 WHERE a=0;
a a
# Connection con1 # Connection con1
# Sending: # Sending:
ALTER TABLE t1 COMMENT 'test'; ALTER TABLE t1 MODIFY a INT UNSIGNED;;
# Connection default # Connection default
# Wait until ALTER TABLE is blocked on table 't1'. # Wait until ALTER TABLE is blocked on table 't1'.
INSERT DELAYED INTO t1 VALUES (3); INSERT DELAYED INTO t1 VALUES (3);
......
...@@ -457,7 +457,7 @@ SELECT * FROM t1 WHERE a=0; ...@@ -457,7 +457,7 @@ SELECT * FROM t1 WHERE a=0;
--echo # Connection con1 --echo # Connection con1
connection con1; connection con1;
--echo # Sending: --echo # Sending:
--send ALTER TABLE t1 COMMENT 'test' --send ALTER TABLE t1 MODIFY a INT UNSIGNED;
--echo # Connection default --echo # Connection default
connection default; connection default;
...@@ -465,7 +465,7 @@ connection default; ...@@ -465,7 +465,7 @@ connection default;
let $wait_condition= let $wait_condition=
SELECT COUNT(*) = 1 FROM information_schema.processlist SELECT COUNT(*) = 1 FROM information_schema.processlist
WHERE state = "Waiting for table metadata lock" WHERE state = "Waiting for table metadata lock"
AND info = "ALTER TABLE t1 COMMENT 'test'"; AND info LIKE "ALTER TABLE t1%";
--source include/wait_condition.inc --source include/wait_condition.inc
--error ER_LOCK_DEADLOCK --error ER_LOCK_DEADLOCK
INSERT DELAYED INTO t1 VALUES (3); INSERT DELAYED INTO t1 VALUES (3);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment