summaryrefslogtreecommitdiff
path: root/mysql-test/r/events_scheduling.result
diff options
context:
space:
mode:
authorMatthias Leich <Matthias.Leich@sun.com>2008-12-16 19:09:09 +0100
committerMatthias Leich <Matthias.Leich@sun.com>2008-12-16 19:09:09 +0100
commit692a879665e6a23d9daada405ddec21698477084 (patch)
tree64d2f5bc9c5d83d4a47bc1d593fc2bcf3f4f10da /mysql-test/r/events_scheduling.result
parent9e42a600177d24dd55169730fe848ebcb270fd5e (diff)
downloadmariadb-git-692a879665e6a23d9daada405ddec21698477084.tar.gz
Fix for Bug#39854 events_scheduling fails sporadically on pushbuild
Detail: - Choose the solution that was already in place (before last fix) for 6.0 - minor cleanup in comments
Diffstat (limited to 'mysql-test/r/events_scheduling.result')
-rw-r--r--mysql-test/r/events_scheduling.result12
1 files changed, 0 insertions, 12 deletions
diff --git a/mysql-test/r/events_scheduling.result b/mysql-test/r/events_scheduling.result
index 63140bffaa4..7dfd10a53f8 100644
--- a/mysql-test/r/events_scheduling.result
+++ b/mysql-test/r/events_scheduling.result
@@ -62,18 +62,6 @@ CREATE EVENT event_4 ON SCHEDULE EVERY 1 SECOND ENDS NOW() + INTERVAL 1 SECOND
ON COMPLETION PRESERVE
DO
INSERT INTO table_4 VALUES (1);
-SELECT IF(SUM(a) >= 4, 'OK', 'ERROR') FROM table_1;
-IF(SUM(a) >= 4, 'OK', 'ERROR')
-OK
-SELECT IF(SUM(a) >= 4, 'OK', 'ERROR') FROM table_2;
-IF(SUM(a) >= 4, 'OK', 'ERROR')
-OK
-SELECT IF(SUM(a) >= 1, 'OK', 'ERROR') FROM table_3;
-IF(SUM(a) >= 1, 'OK', 'ERROR')
-OK
-SELECT IF(SUM(a) >= 1, 'OK', 'ERROR') FROM table_4;
-IF(SUM(a) >= 1, 'OK', 'ERROR')
-OK
SELECT IF(TIME_TO_SEC(TIMEDIFF(ENDS,STARTS))=6, 'OK', 'ERROR')
FROM INFORMATION_SCHEMA.EVENTS
WHERE EVENT_SCHEMA=DATABASE() AND EVENT_NAME='event_2';