diff options
-rw-r--r-- | 20038_all_percona-server-8.0.16-PS-5873.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/20038_all_percona-server-8.0.16-PS-5873.patch b/20038_all_percona-server-8.0.16-PS-5873.patch new file mode 100644 index 0000000..ab73594 --- /dev/null +++ b/20038_all_percona-server-8.0.16-PS-5873.patch @@ -0,0 +1,24 @@ +Fix + + storage/innobase/handler/i_s.cc:7546:1: error: cannot convert 'std::nullptr_t' to 'unsigned int' in initialization + +https://jira.percona.com/browse/PS-5873 +--- + storage/innobase/handler/i_s.cc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- a/storage/innobase/handler/i_s.cc ++++ b/storage/innobase/handler/i_s.cc +@@ -7536,8 +7536,8 @@ struct st_mysql_plugin i_s_innodb_changed_pages = { + STRUCT_FLD(descr, "InnoDB CHANGED_PAGES table"), + STRUCT_FLD(license, PLUGIN_LICENSE_GPL), + STRUCT_FLD(init, i_s_innodb_changed_pages_init), +- STRUCT_FLD(deinit, i_s_common_deinit), + nullptr, ++ STRUCT_FLD(deinit, i_s_common_deinit), + STRUCT_FLD(version, 0x0100 /* 1.0 */), + STRUCT_FLD(status_vars, nullptr), + STRUCT_FLD(system_vars, nullptr), +-- +2.23.0 + |