Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mysql-extras:master commit in: /
Date: Wed, 30 Oct 2019 01:01:15
Message-Id: 1572397234.e347577568d429b6896a39ba59e7eff200241fb0.whissi@gentoo
1 commit: e347577568d429b6896a39ba59e7eff200241fb0
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 30 01:00:34 2019 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 30 01:00:34 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=e3475775
7
8 Add 20038_all_percona-server-8.0.16-PS-5873.patch
9
10 Bug: https://bugs.gentoo.org/697980
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 20038_all_percona-server-8.0.16-PS-5873.patch | 24 ++++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/20038_all_percona-server-8.0.16-PS-5873.patch b/20038_all_percona-server-8.0.16-PS-5873.patch
17 new file mode 100644
18 index 0000000..ab73594
19 --- /dev/null
20 +++ b/20038_all_percona-server-8.0.16-PS-5873.patch
21 @@ -0,0 +1,24 @@
22 +Fix
23 +
24 + storage/innobase/handler/i_s.cc:7546:1: error: cannot convert 'std::nullptr_t' to 'unsigned int' in initialization
25 +
26 +https://jira.percona.com/browse/PS-5873
27 +---
28 + storage/innobase/handler/i_s.cc | 2 +-
29 + 1 file changed, 1 insertion(+), 1 deletion(-)
30 +
31 +--- a/storage/innobase/handler/i_s.cc
32 ++++ b/storage/innobase/handler/i_s.cc
33 +@@ -7536,8 +7536,8 @@ struct st_mysql_plugin i_s_innodb_changed_pages = {
34 + STRUCT_FLD(descr, "InnoDB CHANGED_PAGES table"),
35 + STRUCT_FLD(license, PLUGIN_LICENSE_GPL),
36 + STRUCT_FLD(init, i_s_innodb_changed_pages_init),
37 +- STRUCT_FLD(deinit, i_s_common_deinit),
38 + nullptr,
39 ++ STRUCT_FLD(deinit, i_s_common_deinit),
40 + STRUCT_FLD(version, 0x0100 /* 1.0 */),
41 + STRUCT_FLD(status_vars, nullptr),
42 + STRUCT_FLD(system_vars, nullptr),
43 +--
44 +2.23.0
45 +