diff options
author | Bernhard M. Wiedemann <bwiedemann@suse.de> | 2019-01-26 19:12:17 +0100 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2019-03-26 00:56:41 +0400 |
commit | cfe0fe1ad1f7c75102285d445c3ba8167f5b9c44 (patch) | |
tree | bb27875a47430f9f1a4fc5526157abeb5e10fd1e /mysql-test/t/show_check.test | |
parent | c61e8a6597b3d4010b4c0e9ec0a428cb48fb0ac3 (diff) | |
download | mariadb-git-cfe0fe1ad1f7c75102285d445c3ba8167f5b9c44.tar.gz |
Fix tests in 2020
unfortunately, the year 2038 problem prevented me from pushing
the deadline even further into the future.
Diffstat (limited to 'mysql-test/t/show_check.test')
-rw-r--r-- | mysql-test/t/show_check.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/show_check.test b/mysql-test/t/show_check.test index c2edef87d41..4fe088f2bc7 100644 --- a/mysql-test/t/show_check.test +++ b/mysql-test/t/show_check.test @@ -1156,7 +1156,7 @@ CREATE TRIGGER t1_bi BEFORE INSERT ON t1 FOR EACH ROW SET NEW.c1 = 'ΤΕΣΤ'; -CREATE EVENT ev1 ON SCHEDULE AT '2030-01-01 00:00:00' DO SELECT 'ΤΕΣΤ' AS test; +CREATE EVENT ev1 ON SCHEDULE AT '1970-01-02 00:00:00' ON COMPLETION PRESERVE DISABLE DO SELECT 'ΤΕΣΤ' AS test; # Test: switch the character set and show that SHOW CREATE output is # automatically converted to the new character_set_client. |