diff options
author | unknown <kostja@vajra.(none)> | 2007-05-16 16:01:14 +0400 |
---|---|---|
committer | unknown <kostja@vajra.(none)> | 2007-05-16 16:01:14 +0400 |
commit | b2b1629480033a40932948c4e7649428f8ed1586 (patch) | |
tree | b0e6c08d60dd71fe640fdc3e9bc0a5bb7a5ca0d6 /mysql-test/r/events_bugs.result | |
parent | 7c472868af278cf5725d3a3f94c7f6c905386c06 (diff) | |
download | mariadb-git-b2b1629480033a40932948c4e7649428f8ed1586.tar.gz |
An attempt to fix event_bugs.test failure on Debian
(Bug#26338 "events_bugs.test fail on Debian")
mysql-test/r/events_bugs.result:
Update results.
mysql-test/t/events_bugs.test:
Make a stab at fixing events_bugs.test failure on Debian.
The problem is purely in the race inherent in the test case: an
event that was started doesn't go away fast enough and clutters the
processlist. This patch remove the part of the event that
we can not wait on synchronously (there is no table 'hashed_num'
referenced anywhere).
Diffstat (limited to 'mysql-test/r/events_bugs.result')
-rw-r--r-- | mysql-test/r/events_bugs.result | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/r/events_bugs.result b/mysql-test/r/events_bugs.result index c4053bcfb47..5b48e3ea142 100644 --- a/mysql-test/r/events_bugs.result +++ b/mysql-test/r/events_bugs.result @@ -53,7 +53,6 @@ get_lock('test_bug16407', 60) create event e_16407 on schedule every 60 second do begin select get_lock('test_bug16407', 60); -drop table "hashed_num"; end| "Now if everything is fine the event has compiled and is locked" select /*1*/ user, host, db, info from information_schema.processlist where command!='Daemon' and (info is null or info not like '%processlist%') order by info; |