diff options
author | Monty <monty@mariadb.org> | 2016-10-03 18:49:44 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-10-05 01:11:08 +0300 |
commit | af7490f95d9a0e99dafb70ae3ee5cc7cf044572e (patch) | |
tree | 6dfa0e90d7ee6563572b080f3c6c6f56ca4dd96f /mysql-test/r/events_2.result | |
parent | c1125c32183042a2f7be433d2c10e499f843d82c (diff) | |
download | mariadb-git-af7490f95d9a0e99dafb70ae3ee5cc7cf044572e.tar.gz |
Remove end . from error messages to get them consistent
Fixed a few failing tests
Diffstat (limited to 'mysql-test/r/events_2.result')
-rw-r--r-- | mysql-test/r/events_2.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/events_2.result b/mysql-test/r/events_2.result index c57893ccf6f..ab5d47b5118 100644 --- a/mysql-test/r/events_2.result +++ b/mysql-test/r/events_2.result @@ -262,13 +262,13 @@ begin alter event e1 rename to e2; return 1; end| -ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger. +ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger create function f1() returns int begin drop event e2; return 1; end| -ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger. +ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger ---------------------------------------------------------------------- create trigger trg before insert on t1 for each row begin @@ -309,14 +309,14 @@ begin alter event e1 rename to e2; end| insert into t1 (a) values (1)| -ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger. +ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger drop procedure p1| create procedure p1() begin drop event e1; end| insert into t1 (a) values (1)| -ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger. +ERROR HY000: Explicit or implicit commit is not allowed in stored function or trigger drop table t1| drop event e1| set names utf8; @@ -379,7 +379,7 @@ do select 1; alter event event_35981 on schedule every 1 hour starts '1999-01-01 00:00:00' ends '1999-01-02 00:00:00'; -ERROR HY000: Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was not changed. Specify a time in the future. +ERROR HY000: Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was not changed. Specify a time in the future drop event event_35981; create event event_35981 on schedule every 1 hour starts current_timestamp on completion not preserve @@ -400,7 +400,7 @@ Warnings: Note 1544 Event execution time is in the past. Event has been disabled alter event event_35981 on schedule every 1 hour starts '1999-01-01 00:00:00' ends '1999-01-02 00:00:00' on completion not preserve; -ERROR HY000: Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was not changed. Specify a time in the future. +ERROR HY000: Event execution time is in the past and ON COMPLETION NOT PRESERVE is set. The event was not changed. Specify a time in the future alter event event_35981 on schedule every 1 hour starts '1999-01-01 00:00:00' ends '1999-01-02 00:00:00' on completion preserve; Warnings: |