diff options
author | unknown <anozdrin/alik@station.> | 2007-11-12 17:26:32 +0300 |
---|---|---|
committer | unknown <anozdrin/alik@station.> | 2007-11-12 17:26:32 +0300 |
commit | 0dda7aa6db995cdfb3ce86bcc21ae496d3414f5a (patch) | |
tree | 55fa0782c7c3dac64900a6be6cfc5994c5225353 /mysql-test/t/information_schema.test | |
parent | 819eaead10f656356dbc8f41770679b5ed45a8c9 (diff) | |
download | mariadb-git-0dda7aa6db995cdfb3ce86bcc21ae496d3414f5a.tar.gz |
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.
Diffstat (limited to 'mysql-test/t/information_schema.test')
-rw-r--r-- | mysql-test/t/information_schema.test | 1 |
1 files changed, 1 insertions, 0 deletions
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 |