diff options
| author | Sergei Golubchik <serg@mariadb.org> | 2020-02-19 20:46:29 +0100 |
|---|---|---|
| committer | Sergei Golubchik <serg@mariadb.org> | 2020-02-19 20:46:29 +0100 |
| commit | 520c3f69a6caed5524d3214a0339736d673c4c0c (patch) | |
| tree | e0a642252b655aa78324743242752b6d322df7d9 /mysql-test/r/events_bugs.result | |
| parent | 8e02955b8a2c690bdf874c4718c7c4f9b63d1117 (diff) | |
| parent | 4d1c1b23e1373bbd4e72f524e855f1db076d2c73 (diff) | |
| download | mariadb-git-520c3f69a6caed5524d3214a0339736d673c4c0c.tar.gz | |
Merge tag 'mariadb-5.5.67' into 10.0bb-10.0-MDEV-6463
Diffstat (limited to 'mysql-test/r/events_bugs.result')
| -rw-r--r-- | mysql-test/r/events_bugs.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/events_bugs.result b/mysql-test/r/events_bugs.result index 3e12b43e72c..caf8f77677d 100644 --- a/mysql-test/r/events_bugs.result +++ b/mysql-test/r/events_bugs.result @@ -643,7 +643,7 @@ SET GLOBAL READ_ONLY = 1; # Connection: u1_con (mysqltest_u1@localhost/events_test). # -CREATE EVENT e1 ON SCHEDULE AT '2020-01-01 00:00:00' DO SET @a = 1; +CREATE EVENT e1 ON SCHEDULE AT '2038-01-01 00:00:00' DO SET @a = 1; ERROR HY000: The MariaDB server is running with the --read-only option so it cannot execute this statement ALTER EVENT e1 COMMENT 'comment'; @@ -656,7 +656,7 @@ ERROR HY000: The MariaDB server is running with the --read-only option so it can # Connection: root_con (root@localhost/events_test). # -CREATE EVENT e1 ON SCHEDULE AT '2020-01-01 00:00:00' DO SET @a = 1; +CREATE EVENT e1 ON SCHEDULE AT '2038-01-01 00:00:00' DO SET @a = 1; ALTER EVENT e1 COMMENT 'comment'; |
