diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2020-01-03 10:25:46 +0100 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2020-01-03 10:25:46 +0100 |
commit | 3c94c5b8fab0c3bb0febe62d72b89bc8d51c3932 (patch) | |
tree | bde2bbe91c7a1feba46d66ac1327abe70a71e011 /mysql-test/t | |
parent | 80c97f8c0c496a4ef9372172704b7d0d9115325f (diff) | |
download | mariadb-git-3c94c5b8fab0c3bb0febe62d72b89bc8d51c3932.tar.gz |
MDEV-21416: main.events_bugs fails due to 2020-01-01 date
Moved to the next problematic year (2038).
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/events_bugs.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/events_bugs.test b/mysql-test/t/events_bugs.test index dc31556998a..aca1f144ec3 100644 --- a/mysql-test/t/events_bugs.test +++ b/mysql-test/t/events_bugs.test @@ -1033,7 +1033,7 @@ SET GLOBAL READ_ONLY = 1; --echo --error ER_OPTION_PREVENTS_STATEMENT -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; --echo @@ -1057,7 +1057,7 @@ DROP EVENT e1; --echo -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; --echo |