pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases mysql57: update to 5.7.20



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f8adaaab8f41
branches:  trunk
changeset: 370662:f8adaaab8f41
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun Oct 22 20:20:57 2017 +0000

description:
mysql57: update to 5.7.20

Changes in MySQL 5.7.20:

Audit Log Notes

Event-matching filter rules for the audit_log plugin now support an abort element, which can be used to prevent qualifying events from executing. For more information, see Audit Log Filtering. This 
capability can be used, for example, to augment the capabilities of MySQL Enterprise Firewall, which blocks SQL statements on a per-user basis, by writing audit filtering rules that match statements 
and block them based on characteristics of the statements themselves.

Deprecation and Removal Notes

Previously, the --transaction-isolation and --transaction-read-only server startup options corresponded to the tx_isolation and tx_read_only system variables. For better name correspondence between 
startup option and system variable names, transaction_isolation and transaction_read_only have been created as aliases for tx_isolation and tx_read_only. The tx_isolation and tx_read_only variables 
are now deprecated and will be removed in MySQL 8.0. Applications should be adjusted to use transaction_isolation and transaction_read_only instead.

The query cache is now deprecated and is removed in MySQL 8.0. Deprecation includes these items:
* The FLUSH QUERY CACHE and RESET QUERY CACHE statements.
* The SQL_CACHE and SQL_NO_CACHE SELECT modifiers.
* These system variables: have_query_cache, ndb_cache_check_time, query_cache_limit, query_cache_min_res_unit, query_cache_size, query_cache_type, query_cache_wlock_invalidate.
* These status variables: Qcache_free_blocks, Qcache_free_memory, Qcache_hits, Qcache_inserts, Qcache_lowmem_prunes, Qcache_not_cached, Qcache_queries_in_cache, Qcache_total_blocks.

The mysql client by default strips comments in statements sent to the server, and this behavior is controlled using --skip-comments (strip comments), and --comments (preserve comments).
Comment stripping is now deprecated. This feature and the options to control it will be removed in a future MySQL release.

These syntax constructs for table and column references are now deprecated and will be removed in a future version of MySQL. Instances of these constructs should be changed to remove the leading 
period.
* .col_name
* .tbl_name
* .tbl_name.col_name

Security Notes

Certificates automatically generated by mysqld and mysql_ssl_rsa_setup now use X509 v3 rather than v1.
The keyring_okv plugin now supports password-protecting the key file used for secure connections. See Using the keyring_okv KMIP Plugin.

Bugs Fixed

diffstat:

 databases/mysql57-client/Makefile                                |   3 +-
 databases/mysql57-client/Makefile.common                         |   4 +-
 databases/mysql57-client/PLIST                                   |   4 +-
 databases/mysql57-client/distinfo                                |  12 +-
 databases/mysql57-client/patches/patch-mysql-test_CMakeLists.txt |   6 +-
 databases/mysql57-server/Makefile                                |   3 +-
 databases/mysql57-server/PLIST                                   |  88 ++++++++-
 7 files changed, 93 insertions(+), 27 deletions(-)

diffs (truncated from 571 to 300 lines):

diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-client/Makefile
--- a/databases/mysql57-client/Makefile Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-client/Makefile Sun Oct 22 20:20:57 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.9 2017/09/13 17:34:41 adam Exp $
+# $NetBSD: Makefile,v 1.10 2017/10/22 20:20:57 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-client-/}
-PKGREVISION=   2
 COMMENT=       MySQL 5, a free SQL database (client)
 
 CONFLICTS=     mysql3-client-[0-9]*
diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-client/Makefile.common
--- a/databases/mysql57-client/Makefile.common  Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-client/Makefile.common  Sun Oct 22 20:20:57 2017 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.7 2017/09/03 08:53:05 wiz Exp $
+# $NetBSD: Makefile.common,v 1.8 2017/10/22 20:20:57 adam Exp $
 #
 # used by databases/mysql57-client/Makefile
 # used by databases/mysql57-server/Makefile
 
-DISTNAME=      mysql-5.7.19
+DISTNAME=      mysql-5.7.20
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_MYSQL:=MySQL-5.7/}
 
diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-client/PLIST
--- a/databases/mysql57-client/PLIST    Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-client/PLIST    Sun Oct 22 20:20:57 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.5 2017/07/20 16:41:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2017/10/22 20:20:57 adam Exp $
 bin/mysql
 bin/mysql_client_test
 bin/mysql_config
@@ -122,7 +122,7 @@
 lib/libmysqlclient.a
 lib/libmysqlclient.so
 lib/libmysqlclient.so.20
-lib/libmysqlclient.so.20.3.6
+lib/libmysqlclient.so.20.3.7
 lib/pkgconfig/mysqlclient.pc
 man/man1/comp_err.1
 man/man1/innochecksum.1
diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-client/distinfo
--- a/databases/mysql57-client/distinfo Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-client/distinfo Sun Oct 22 20:20:57 2017 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.14 2017/09/13 17:34:41 adam Exp $
+$NetBSD: distinfo,v 1.15 2017/10/22 20:20:57 adam Exp $
 
-SHA1 (mysql-5.7.19.tar.gz) = 2420bd5f12664c18313779668a8256aea53e52a0
-RMD160 (mysql-5.7.19.tar.gz) = 69f52cee63fe1344c487bd40e027a7dc57d067f7
-SHA512 (mysql-5.7.19.tar.gz) = 04296e480fc91381137a32d064f6d33d0a96b28ae64ca1202ef045a8e78434a61e81d83e36b8bfa7fccdcf37f1b65e955b4466c7d036bc014cecac83f0c4b1cf
-Size (mysql-5.7.19.tar.gz) = 51686763 bytes
+SHA1 (mysql-5.7.20.tar.gz) = 567061d786d89fe65cb6fb70d0e70e36278e9ef2
+RMD160 (mysql-5.7.20.tar.gz) = ac32cc6809c378ce795f8bc89422868a4702b290
+SHA512 (mysql-5.7.20.tar.gz) = 130f8fd7afffd807e52fae47765c6bcdcae7f81448dfd2f7f6ce7108b4c8ddb1d190d17d72eb2c3a774cbc74db93a50942fc7ca079211437b17ab58000ccf11f
+Size (mysql-5.7.20.tar.gz) = 51725558 bytes
 SHA1 (patch-CMakeLists.txt) = b47592cf8801538375da3df2990fde4d292fc365
 SHA1 (patch-client_CMakeLists.txt) = 304023577ab9c2152ca21fa9ff4895a22a321adf
 SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb
@@ -19,7 +19,7 @@
 SHA1 (patch-include_my__thread.h) = 0f095acf94f8d130516dc4d858de1c64dd2bc127
 SHA1 (patch-include_my__thread__os__id.h) = a51861b791086a0eeb9cb4d64892c5033da8c8eb
 SHA1 (patch-libmysql_CMakeLists.txt) = 00ce9c7f0e2c4132b872ffde05ee74e81c280f68
-SHA1 (patch-mysql-test_CMakeLists.txt) = 4ba56ce255f5f89d9aece93181e54ddb572f301b
+SHA1 (patch-mysql-test_CMakeLists.txt) = 8a8e846792077101a01731c4577c37161f70264d
 SHA1 (patch-mysys__ssl_CMakeLists.txt) = 7ec44642cd13c5477175a94a007354c583ca9c3c
 SHA1 (patch-mysys_kqueue__timers.c) = 836803e9c7353b813bc22a5b69cc263dea384c9b
 SHA1 (patch-mysys_my__symlink.c) = 23b57cd5922357d0bc72f5c15100a9fe1f89cfb2
diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-client/patches/patch-mysql-test_CMakeLists.txt
--- a/databases/mysql57-client/patches/patch-mysql-test_CMakeLists.txt  Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-client/patches/patch-mysql-test_CMakeLists.txt  Sun Oct 22 20:20:57 2017 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-mysql-test_CMakeLists.txt,v 1.1 2016/09/16 06:49:11 adam Exp $
+$NetBSD: patch-mysql-test_CMakeLists.txt,v 1.2 2017/10/22 20:20:57 adam Exp $
 
 Exclude some unwanted files.
 
---- mysql-test/CMakeLists.txt.orig     2014-11-21 10:02:01.000000000 +0000
+--- mysql-test/CMakeLists.txt.orig     2017-09-13 15:48:22.000000000 +0000
 +++ mysql-test/CMakeLists.txt
 @@ -24,9 +24,11 @@ INSTALL(
    PATTERN "lib/t*" EXCLUDE
@@ -15,4 +15,4 @@
 +  PATTERN "*.cmake" EXCLUDE
    PATTERN "*.in" EXCLUDE
  )
- ENDIF()
+   IF(NOT INSTALL_LAYOUT MATCHES "RPM")
diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-server/Makefile
--- a/databases/mysql57-server/Makefile Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-server/Makefile Sun Oct 22 20:20:57 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2017/09/13 17:34:41 adam Exp $
+# $NetBSD: Makefile,v 1.11 2017/10/22 20:20:57 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-server-/}
-PKGREVISION=   2
 COMMENT=       MySQL 5, a free SQL database (server)
 
 CONFLICTS=     mysql3-server-[0-9]*
diff -r d1c8c9309218 -r f8adaaab8f41 databases/mysql57-server/PLIST
--- a/databases/mysql57-server/PLIST    Sun Oct 22 20:18:04 2017 +0000
+++ b/databases/mysql57-server/PLIST    Sun Oct 22 20:20:57 2017 +0000
@@ -1,4 +1,5 @@
-@comment $NetBSD: PLIST,v 1.5 2017/07/20 16:41:10 adam Exp $
+@comment $NetBSD: PLIST,v 1.6 2017/10/22 20:20:57 adam Exp $
+@pkgdir lib/mysql/plugin/debug
 bin/innochecksum
 bin/lz4_decompress
 bin/my_print_defaults
@@ -82,10 +83,12 @@
 sbin/mysqld
 share/aclocal/mysql.m4
 share/doc/mysql/COPYING
+share/doc/mysql/COPYING-test
 share/doc/mysql/ChangeLog
 share/doc/mysql/INFO_BIN
 share/doc/mysql/INFO_SRC
 share/doc/mysql/README
+share/doc/mysql/README-test
 share/mysql/bulgarian/errmsg.sys
 share/mysql/charsets/Index.xml
 share/mysql/charsets/README
@@ -262,6 +265,7 @@
 share/mysql/test/extra/rpl_tests/rpl_gtid_temp_table_in_func_or_trigger.inc
 share/mysql/test/extra/rpl_tests/rpl_gtids_restart_slave_io_lost_trx.test
 share/mysql/test/extra/rpl_tests/rpl_heartbeat_2slaves.inc
+share/mysql/test/extra/rpl_tests/rpl_ignore_super_read_only.test
 share/mysql/test/extra/rpl_tests/rpl_ignore_table_filter_insensitive.inc
 share/mysql/test/extra/rpl_tests/rpl_ignore_table_filter_sensitive.inc
 share/mysql/test/extra/rpl_tests/rpl_implicit_commit_binlog.test
@@ -355,6 +359,7 @@
 share/mysql/test/include/analyze-sync_with_master.test
 share/mysql/test/include/analyze-timeout.test
 share/mysql/test/include/assert.inc
+share/mysql/test/include/assert_and_disable_read_only.inc
 share/mysql/test/include/assert_binlog_events.inc
 share/mysql/test/include/assert_command_output.inc
 share/mysql/test/include/assert_grep.inc
@@ -1934,6 +1939,8 @@
 share/mysql/test/r/timezone_debug.result
 share/mysql/test/r/timezone_grant.result
 share/mysql/test/r/trans_read_only.result
+share/mysql/test/r/transaction_isolation.result
+share/mysql/test/r/transaction_read_only.result
 share/mysql/test/r/trigger-compat.result
 share/mysql/test/r/trigger-trans.result
 share/mysql/test/r/trigger.result
@@ -1979,6 +1986,7 @@
 share/mysql/test/r/user_lock.result
 share/mysql/test/r/user_var-binlog.result
 share/mysql/test/r/user_var.result
+share/mysql/test/r/utility_warnings.result
 share/mysql/test/r/validate_password_plugin.result
 share/mysql/test/r/validate_password_plugin_check_user.result
 share/mysql/test/r/varbinary.result
@@ -2143,6 +2151,7 @@
 share/mysql/test/std_data/loaddata4.dat
 share/mysql/test/std_data/loaddata5.dat
 share/mysql/test/std_data/loaddata6.dat
+share/mysql/test/std_data/loaddata7.dat
 share/mysql/test/std_data/loaddata_dq.dat
 share/mysql/test/std_data/loaddata_pair.dat
 share/mysql/test/std_data/loaddata_utf8.dat
@@ -2361,6 +2370,7 @@
 share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_consistent.result
 share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_violation.result
 share/mysql/test/suite/binlog/r/binlog_error_action.result
+share/mysql/test/suite/binlog/r/binlog_flush_logs_error.result
 share/mysql/test/suite/binlog/r/binlog_foreign_key_parent_table_deleted.result
 share/mysql/test/suite/binlog/r/binlog_format_switch_in_tmp_table.result
 share/mysql/test/suite/binlog/r/binlog_grant.result
@@ -2503,6 +2513,7 @@
 share/mysql/test/suite/binlog/r/binlog_xa_prepared_disconnect.result
 share/mysql/test/suite/binlog/r/binlog_xa_select_gtid_executed_explicitly_crash.result
 share/mysql/test/suite/binlog/r/binlog_xa_trx_gtid_response_packet.result
+share/mysql/test/suite/binlog/r/binlog_xa_trx_split_across_binlog.result
 share/mysql/test/suite/binlog/r/log_builtin_as_identified_by_password.result
 share/mysql/test/suite/binlog/r/show_binlog_events_no_lock.result
 share/mysql/test/suite/binlog/std_data/binlog_old_version_4_1.000001
@@ -2539,6 +2550,7 @@
 share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_violation.test
 share/mysql/test/suite/binlog/t/binlog_error_action-master.opt
 share/mysql/test/suite/binlog/t/binlog_error_action.test
+share/mysql/test/suite/binlog/t/binlog_flush_logs_error.test
 share/mysql/test/suite/binlog/t/binlog_foreign_key_parent_table_deleted-master.opt
 share/mysql/test/suite/binlog/t/binlog_foreign_key_parent_table_deleted.test
 share/mysql/test/suite/binlog/t/binlog_format_switch_in_tmp_table.test
@@ -2717,6 +2729,7 @@
 share/mysql/test/suite/binlog/t/binlog_xa_select_gtid_executed_explicitly_crash.test
 share/mysql/test/suite/binlog/t/binlog_xa_trx_gtid_response_packet-master.opt
 share/mysql/test/suite/binlog/t/binlog_xa_trx_gtid_response_packet.test
+share/mysql/test/suite/binlog/t/binlog_xa_trx_split_across_binlog.test
 share/mysql/test/suite/binlog/t/disabled.def
 share/mysql/test/suite/binlog/t/log_builtin_as_identified_by_password-master.opt
 share/mysql/test/suite/binlog/t/log_builtin_as_identified_by_password.test
@@ -4136,6 +4149,7 @@
 share/mysql/test/suite/group_replication/r/gr_change_master_hidden.result
 share/mysql/test/suite/group_replication/r/gr_change_master_hidden_ps_protocol.result
 share/mysql/test/suite/group_replication/r/gr_change_master_not_replicated.result
+share/mysql/test/suite/group_replication/r/gr_check_count_tx_remote_applier_queue.result
 share/mysql/test/suite/group_replication/r/gr_columns_partition_tables.result
 share/mysql/test/suite/group_replication/r/gr_command_line_recovery_ssl_validation.result
 share/mysql/test/suite/group_replication/r/gr_communication_configuration.result
@@ -4146,6 +4160,7 @@
 share/mysql/test/suite/group_replication/r/gr_concurrent_events_insert_with_select.result
 share/mysql/test/suite/group_replication/r/gr_concurrent_uninstall_start.result
 share/mysql/test/suite/group_replication/r/gr_concurrent_uninstall_stop.result
+share/mysql/test/suite/group_replication/r/gr_connect_during_delayed_start.result
 share/mysql/test/suite/group_replication/r/gr_core_replication_commands.result
 share/mysql/test/suite/group_replication/r/gr_crash_donor_server.result
 share/mysql/test/suite/group_replication/r/gr_crash_donor_server_continuously.result
@@ -4281,7 +4296,7 @@
 share/mysql/test/suite/group_replication/r/gr_recovery_single_server.result
 share/mysql/test/suite/group_replication/r/gr_recovery_slave_commands.result
 share/mysql/test/suite/group_replication/r/gr_recovery_ssl_and_ssl_mode.result
-share/mysql/test/suite/group_replication/r/gr_recovery_stop_super_read_only.result
+share/mysql/test/suite/group_replication/r/gr_recovery_ssl_variables.result
 share/mysql/test/suite/group_replication/r/gr_recovery_super_read_only.result
 share/mysql/test/suite/group_replication/r/gr_recovery_updates.result
 share/mysql/test/suite/group_replication/r/gr_recovery_user_password_nonexistent.result
@@ -4310,10 +4325,12 @@
 share/mysql/test/suite/group_replication/r/gr_server_failover_while_dml.result
 share/mysql/test/suite/group_replication/r/gr_server_failover_while_dml_on_other.result
 share/mysql/test/suite/group_replication/r/gr_server_id_0.result
+share/mysql/test/suite/group_replication/r/gr_server_uuid_matches_group_name.result
+share/mysql/test/suite/group_replication/r/gr_server_uuid_matches_group_name_bootstrap.result
+share/mysql/test/suite/group_replication/r/gr_server_uuid_matches_group_name_non_bootstrap.result
 share/mysql/test/suite/group_replication/r/gr_set_gtid_mode.result
 share/mysql/test/suite/group_replication/r/gr_set_gtid_next.result
 share/mysql/test/suite/group_replication/r/gr_set_gtid_next_rollback_on_certification.result
-share/mysql/test/suite/group_replication/r/gr_set_read_only_before_leave_group.result
 share/mysql/test/suite/group_replication/r/gr_set_super_read_only_before_leave_group.result
 share/mysql/test/suite/group_replication/r/gr_show_global_and_session_variables.result
 share/mysql/test/suite/group_replication/r/gr_show_gr_activity.result
@@ -4321,6 +4338,7 @@
 share/mysql/test/suite/group_replication/r/gr_show_slave_status_for_channel_recovery.result
 share/mysql/test/suite/group_replication/r/gr_single_primary_and_leader_election.result
 share/mysql/test/suite/group_replication/r/gr_single_primary_and_leader_election_on_error.result
+share/mysql/test/suite/group_replication/r/gr_single_primary_and_leader_election_weight.result
 share/mysql/test/suite/group_replication/r/gr_single_primary_async_after_gr_primary.result
 share/mysql/test/suite/group_replication/r/gr_single_primary_async_after_gr_secondary.result
 share/mysql/test/suite/group_replication/r/gr_single_primary_async_before_gr_primary.result
@@ -4358,7 +4376,9 @@
 share/mysql/test/suite/group_replication/r/gr_ssl_options.result
 share/mysql/test/suite/group_replication/r/gr_ssl_options2.result
 share/mysql/test/suite/group_replication/r/gr_stable_set_on_view_change.result
+share/mysql/test/suite/group_replication/r/gr_start_fail_restore_read_mode.result
 share/mysql/test/suite/group_replication/r/gr_start_on_boot.result
+share/mysql/test/suite/group_replication/r/gr_start_onboot_fail_restore_read_mode.result
 share/mysql/test/suite/group_replication/r/gr_start_replication_auto.result
 share/mysql/test/suite/group_replication/r/gr_start_replication_auto_with_ssl_recovery.result
 share/mysql/test/suite/group_replication/r/gr_start_replication_auto_with_super_read_only.result
@@ -4373,6 +4393,7 @@
 share/mysql/test/suite/group_replication/r/gr_startup_verifications_not_gtid.result
 share/mysql/test/suite/group_replication/r/gr_startup_verifications_not_log_slave_updates.result
 share/mysql/test/suite/group_replication/r/gr_startup_verifications_not_table_repositories.result
+share/mysql/test/suite/group_replication/r/gr_stop_async_on_stop_gr.result
 share/mysql/test/suite/group_replication/r/gr_stop_gr_during_dml_01.result
 share/mysql/test/suite/group_replication/r/gr_stop_gr_during_dml_02.result
 share/mysql/test/suite/group_replication/r/gr_stop_procedure_hang.result
@@ -4388,6 +4409,7 @@
 share/mysql/test/suite/group_replication/r/gr_transaction_limit_option.result
 share/mysql/test/suite/group_replication/r/gr_uninstall_install_plugin.result
 share/mysql/test/suite/group_replication/r/gr_uninstall_while_disabled.result
+share/mysql/test/suite/group_replication/r/gr_uninstall_while_network_blocked.result
 share/mysql/test/suite/group_replication/r/gr_unique_key_conflict.result
 share/mysql/test/suite/group_replication/r/gr_unique_key_table_requirements.result
 share/mysql/test/suite/group_replication/r/gr_user.result
@@ -4446,6 +4468,7 @@
 share/mysql/test/suite/group_replication/t/gr_change_master_hidden_ps_protocol-master.opt
 share/mysql/test/suite/group_replication/t/gr_change_master_hidden_ps_protocol.test
 share/mysql/test/suite/group_replication/t/gr_change_master_not_replicated.test
+share/mysql/test/suite/group_replication/t/gr_check_count_tx_remote_applier_queue.test
 share/mysql/test/suite/group_replication/t/gr_columns_partition_tables.cnf
 share/mysql/test/suite/group_replication/t/gr_columns_partition_tables.test
 share/mysql/test/suite/group_replication/t/gr_command_line_recovery_ssl_validation-master.opt
@@ -4461,6 +4484,7 @@
 share/mysql/test/suite/group_replication/t/gr_concurrent_events_insert_with_select.test
 share/mysql/test/suite/group_replication/t/gr_concurrent_uninstall_start.test
 share/mysql/test/suite/group_replication/t/gr_concurrent_uninstall_stop.test
+share/mysql/test/suite/group_replication/t/gr_connect_during_delayed_start.test
 share/mysql/test/suite/group_replication/t/gr_core_replication_commands.cnf
 share/mysql/test/suite/group_replication/t/gr_core_replication_commands.test
 share/mysql/test/suite/group_replication/t/gr_crash_donor_server.cnf
@@ -4671,7 +4695,7 @@
 share/mysql/test/suite/group_replication/t/gr_recovery_ssl_and_ssl_mode-master.opt
 share/mysql/test/suite/group_replication/t/gr_recovery_ssl_and_ssl_mode-slave.opt
 share/mysql/test/suite/group_replication/t/gr_recovery_ssl_and_ssl_mode.test
-share/mysql/test/suite/group_replication/t/gr_recovery_stop_super_read_only.test
+share/mysql/test/suite/group_replication/t/gr_recovery_ssl_variables.test
 share/mysql/test/suite/group_replication/t/gr_recovery_super_read_only.test
 share/mysql/test/suite/group_replication/t/gr_recovery_updates.cnf
 share/mysql/test/suite/group_replication/t/gr_recovery_updates.test
@@ -4713,10 +4737,16 @@
 share/mysql/test/suite/group_replication/t/gr_server_failover_while_dml_on_other.cnf



Home | Main Index | Thread Index | Old Index