diff options
author | Dmitry Lenev <dlenev@mysql.com> | 2010-08-24 20:20:00 +0400 |
---|---|---|
committer | Dmitry Lenev <dlenev@mysql.com> | 2010-08-24 20:20:00 +0400 |
commit | 4b42331a3f03737f944eb8423ab519b2b2cad18c (patch) | |
tree | 759dd358e345f228eea412014c456c88803dd402 /mysql-test/r/delayed.result | |
parent | 8f153fbd398a49d6027ff8883f868a2ac51aa723 (diff) | |
download | mariadb-git-4b42331a3f03737f944eb8423ab519b2b2cad18c.tar.gz |
Fixed --ps-protocol failures of test for bug#54332 "Deadlock
with two connections doing LOCK TABLE+INSERT DELAYED".
Disabled --ps-protocol for this part of the test as INSERT
DELAYED simply doesn't work with it under LOCK TABLES.
Diffstat (limited to 'mysql-test/r/delayed.result')
-rw-r--r-- | mysql-test/r/delayed.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/delayed.result b/mysql-test/r/delayed.result index 871931f6b49..4cb97719ff2 100644 --- a/mysql-test/r/delayed.result +++ b/mysql-test/r/delayed.result @@ -348,6 +348,8 @@ DROP TABLE t1; # # Bug#54332 Deadlock with two connections doing LOCK TABLE+INSERT DELAYED # +# This test is not supposed to work under --ps-protocol since +# INSERT DELAYED doesn't work under LOCK TABLES with this protocol. DROP TABLE IF EXISTS t1, t2; CREATE TABLE t1 (a INT); CREATE TABLE t2 (a INT); |