From 0dda7aa6db995cdfb3ce86bcc21ae496d3414f5a Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 12 Nov 2007 17:26:32 +0300 Subject: [PATCH] A patch for BUG#32172: information_schema test fails with wait_condition timeout. The problem was that the event thread didn't manage to execute the event in 30 seconds on highly-loaded box. The fix is to increase timeout. This is a fix for the test suite. mysql-test/t/information_schema.test: Provide more time to execute an event. --- mysql-test/t/information_schema.test | 1 + 1 file changed, 1 insertion(+) diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test index 1987d9d5773..55334916913 100644 --- a/mysql-test/t/information_schema.test +++ b/mysql-test/t/information_schema.test @@ -1142,6 +1142,7 @@ END$$ DELIMITER ;$$ +let $wait_timeout= 300; let $wait_condition=select count(*) = 0 from information_schema.events where event_name='event_status'; --source include/wait_condition.inc