From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6AB24138350 for ; Mon, 20 Jan 2020 18:28:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DE2AE08AA; Mon, 20 Jan 2020 18:28:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 83567E08AA for ; Mon, 20 Jan 2020 18:28:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 78BFB34E2E2 for ; Mon, 20 Jan 2020 18:28:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 063CE7E for ; Mon, 20 Jan 2020 18:28:26 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1579544897.fb00ac7f844cce16f64e3b9d602c0907840bd32e.whissi@gentoo> Subject: [gentoo-commits] proj/mysql-extras:master commit in: / X-VCS-Repository: proj/mysql-extras X-VCS-Files: 20018_all_mysql-8.0.19-fix-events_bugs-test.patch X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: fb00ac7f844cce16f64e3b9d602c0907840bd32e X-VCS-Branch: master Date: Mon, 20 Jan 2020 18:28:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 68db265e-5c35-4baf-a955-df1def1f5c2a X-Archives-Hash: 7e1540d86557fcfbc9ffae2700283cfc commit: fb00ac7f844cce16f64e3b9d602c0907840bd32e Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jan 20 18:28:17 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jan 20 18:28:17 2020 +0000 URL: https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=fb00ac7f Add 20018_all_mysql-8.0.19-fix-events_bugs-test.patch Signed-off-by: Thomas Deutschmann gentoo.org> 20018_all_mysql-8.0.19-fix-events_bugs-test.patch | 42 +++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/20018_all_mysql-8.0.19-fix-events_bugs-test.patch b/20018_all_mysql-8.0.19-fix-events_bugs-test.patch new file mode 100644 index 0000000..6a737f2 --- /dev/null +++ b/20018_all_mysql-8.0.19-fix-events_bugs-test.patch @@ -0,0 +1,42 @@ +https://bugs.mysql.com/bug.php?id=98107 + +--- a/mysql-test/r/events_bugs.result ++++ b/mysql-test/r/events_bugs.result +@@ -647,7 +647,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 MySQL server is running with the --read-only option so it cannot execute this statement + + ALTER EVENT e1 COMMENT 'comment'; +@@ -660,7 +660,7 @@ ERROR HY000: The MySQL server is running with the --read-only option so it canno + # 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'; + +--- 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 +