diff options
author | andrey@lmy004. <> | 2006-04-07 11:29:15 +0200 |
---|---|---|
committer | andrey@lmy004. <> | 2006-04-07 11:29:15 +0200 |
commit | bdfdd38f606e1988e5ab2f52a07bcd4e3c5c7bfa (patch) | |
tree | 6b073c924c4e5ba978df66c450730ec756542999 /mysql-test/t/events_scheduling.test | |
parent | 7bd09ac24d92284de4ad2649770e5fa058b64c37 (diff) | |
download | mariadb-git-bdfdd38f606e1988e5ab2f52a07bcd4e3c5c7bfa.tar.gz |
update tests
Diffstat (limited to 'mysql-test/t/events_scheduling.test')
-rw-r--r-- | mysql-test/t/events_scheduling.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/events_scheduling.test b/mysql-test/t/events_scheduling.test index 41bbb1da3c0..f83d919515b 100644 --- a/mysql-test/t/events_scheduling.test +++ b/mysql-test/t/events_scheduling.test @@ -24,10 +24,10 @@ SELECT IF(TIME_TO_SEC(TIMEDIFF(ENDS,STARTS))=6, 'OK', 'ERROR') FROM INFORMATION_ SELECT IF(LAST_EXECUTED-ENDS < 2, 'OK', 'ERROR') FROM INFORMATION_SCHEMA.EVENTS WHERE EVENT_SCHEMA=DATABASE() AND EVENT_NAME='start_n_end' AND ENDS IS NOT NULL; DROP EVENT start_n_end; --echo "Already dropped because ended. Therefore an error." ---error 1517 +--error ER_EVENT_DOES_NOT_EXIST DROP EVENT only_one_time; --echo "Already dropped because ended. Therefore an error." ---error 1517 +--error ER_EVENT_DOES_NOT_EXIST DROP EVENT two_time; DROP TABLE table_1; DROP TABLE table_2; |