Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
innodb.innodb_mysql w2 [ fail ] timeout after 2700 seconds
Test ended at 2010-10-23 13:29:10
Test case timeout after 2700 seconds
== /var/lib/buildbot/maria-slave/debian5-i386-fulltest/build/mysql-test/var/2/log/innodb_mysql.log ==
INSERT INTO t1 VALUES (1,'init');
CREATE PROCEDURE p1()
BEGIN
UPDATE t1 SET b = CONCAT(b, '+con2') WHERE a = 1;
INSERT INTO t2 VALUES ();
END|
BEGIN;
UPDATE t1 SET b = CONCAT(b, '+con1') WHERE a = 1;
affected rows: 1
info: Rows matched: 1 Changed: 1 Warnings: 0
SELECT * FROM t1;
a b
1 init+con1
- Switch to connection con2
CALL p1;; - Switch to connection con1
SELECT * FROM t1;
a b
1 init+con1
COMMIT;
The failure is quite rare. Here are links to the failure history in Buildbot:
The problem is a race condition in the test case, will commit a patch.