pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases mysql57: updated to 5.7.24



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1730db509748
branches:  trunk
changeset: 315377:1730db509748
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Nov 22 16:14:53 2018 +0000

description:
mysql57: updated to 5.7.24

Changes in MySQL 5.7.24

Deprecation and Removal Notes

* InnoDB; Partitioning: Support for placing table partitions in shared tablespaces is deprecated and will be removed in a future version of MySQL. Shared tablespaces include the system tablespace and 
general tablespaces. For information about identifying partitions in shared tablespaces and moving them to file-per-table tablespaces, see Preparing Your Installation for Upgrade.

* InnoDB: Support for TABLESPACE = innodb_file_per_table and TABLESPACE = innodb_temporary clauses with CREATE TEMPORARY TABLE is deprecated and will be removed in a future MySQL version.


Functionality Added or Changed

Replication: Use the group_replication_exit_state_action option to configure how Group Replication behaves when a member leaves the group involuntarily, for example when it is expelled from the group 
due to an unstable network connection. When group_replication_exit_state_action is set to ABORT_SERVER, upon exiting the group unintentionally, the instance shuts MySQL down, and when 
group_replication_exit_state_action is set to READ_ONLY the instance sets MySQL to super read only mode instead and its state is set to ERROR.

Previously, file I/O performed in the I/O cache in the mysys library was not instrumented, affecting in particular file I/O statistics reported by the Performance Schema about the binary log index 
file. Now, this I/O is instrumented and Performance Schema statistics are accurate. Thanks to Yura Sorokin for the contribution.

The zlib library version bundled with MySQL was raised from version 1.2.3 to version 1.2.11. MySQL implements compression with the help of the zlib library.

The zlib compressBound() function in zlib 1.2.11 returns a slightly higher estimate of the buffer size required to compress a given length of bytes than it did in zlib version 1.2.3. The 
compressBound() function is called by InnoDB functions that determine the maximum row size permitted when creating compressed InnoDB tables or inserting rows into compressed InnoDB tables. As a 
result, CREATE TABLE ... ROW_FORMAT=COMPRESSED or INSERT operations with row sizes very close to the maximum row size that were successful in earlier releases could now fail.

Bugs Fixed

* InnoDB: An ALTER TABLE operation that added a primary key produced a segmentation fault.

* InnoDB: A query that scanned the primary key of a table did not return the expected result.

* InnoDB: A query interruption during a lock wait caused an error.

* InnoDB: An index record was not found when updating a secondary index defined on a generated column.

* InnoDB: The update log applied as part of an online ALTER TABLE operation did not take into account the computed value of the generated column in the old row while updating the secondary index.

* InnoDB: An unsupported DDL operation involving a foreign key constraint raised an assertion.

* InnoDB: An attempted foreign key check on a discarded table caused a segmentation fault.

* InnoDB: An assertion was raised during an OPTIMIZE TABLE operation.

* InnoDB: A foreign key constraint name was duplicated during a rename table operation, causing a failure during later query execution.

* InnoDB: In a function called before the execution of a statement in a stored procedure, a read and write operation on trx->lock.start_stmt was not protected by a mutex.

* InnoDB: An error occurred during a DDL operation due to a mismatch in a REDUNDANT row format calculation that determines the length of the online log.

* InnoDB: The location of the Innodb Merge Temp File that reported by the wait/io/file/innodb/innodb_temp_file Performance Schema instrument was incorrect.

* Partitioning: When a CREATE TABLE ... PARTITION BY ... statement failed due to an invalid partition definition, the server did not remove any partition files which might have been created prior to 
encountering the invalid PARTITION clause.

* Partitioning: It was possible to perform FLUSH TABLES FOR EXPORT on a partitioned table created with innodb_file_per_table=1 after discarding its tablespace. Attempting to do so now raises 
ER_TABLESPACE_DISCARDED.

* Replication: When the binlog_group_commit_sync_delay system variable is set to a wait time to delay synchronization of transactions to disk, and the binlog_group_commit_sync_no_delay_count system 
variable is also set to a number of transactions, the MySQL server exits the wait procedure if the specified number of transactions is reached before the specified wait time is reached. The server 
manages this process by checking on the transaction count after a delta of one tenth of the time specified by binlog_group_commit_sync_delay has elapsed, then subtracting that interval from the 
remaining wait time.

more...

diffstat:

 databases/mysql57-client/Makefile                                    |   3 +-
 databases/mysql57-client/Makefile.common                             |   4 +-
 databases/mysql57-client/PLIST                                       |   4 +-
 databases/mysql57-client/distinfo                                    |  15 +-
 databases/mysql57-client/patches/patch-rapid_plugin_x_CMakeLists.txt |  12 +-
 databases/mysql57-client/patches/patch-sql_CMakeLists.txt            |   8 +-
 databases/mysql57-server/Makefile                                    |   4 +-
 databases/mysql57-server/PLIST                                       |  85 +++++++++-
 8 files changed, 108 insertions(+), 27 deletions(-)

diffs (truncated from 497 to 300 lines):

diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-client/Makefile
--- a/databases/mysql57-client/Makefile Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-client/Makefile Thu Nov 22 16:14:53 2018 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2018/09/07 20:40:45 wiz Exp $
+# $NetBSD: Makefile,v 1.17 2018/11/22 16:14:53 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-client-/}
-PKGREVISION=   2
 COMMENT=       MySQL 5, a free SQL database (client)
 
 CONFLICTS=     mysql3-client-[0-9]*
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-client/Makefile.common
--- a/databases/mysql57-client/Makefile.common  Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-client/Makefile.common  Thu Nov 22 16:14:53 2018 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.12 2018/08/16 16:06:09 adam Exp $
+# $NetBSD: Makefile.common,v 1.13 2018/11/22 16:14:53 adam Exp $
 #
 # used by databases/mysql57-client/Makefile
 # used by databases/mysql57-server/Makefile
 
-DISTNAME=      mysql-5.7.23
+DISTNAME=      mysql-5.7.24
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_MYSQL:=MySQL-5.7/}
 
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-client/PLIST
--- a/databases/mysql57-client/PLIST    Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-client/PLIST    Thu Nov 22 16:14:53 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.10 2018/09/07 20:40:45 wiz Exp $
+@comment $NetBSD: PLIST,v 1.11 2018/11/22 16:14:53 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.10
+lib/libmysqlclient.so.20.3.11
 lib/pkgconfig/mysqlclient.pc
 man/man1/comp_err.1
 man/man1/innochecksum.1
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-client/distinfo
--- a/databases/mysql57-client/distinfo Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-client/distinfo Thu Nov 22 16:14:53 2018 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.24 2018/11/13 11:24:38 markd Exp $
+$NetBSD: distinfo,v 1.25 2018/11/22 16:14:53 adam Exp $
 
-SHA1 (mysql-5.7.23.tar.gz) = 0c07dd1670f3749c482180227717738c031bb5b4
-RMD160 (mysql-5.7.23.tar.gz) = 20021aa73537f4630b72931925bec78c251b06e6
-SHA512 (mysql-5.7.23.tar.gz) = 4c303ef03cd808f96a6548ef3ff5107d2fa41dc3776b42513d482cec539ffac33a5a412749de5d9c60b2a8f3e4f592bfef5a4a79d741013de13621c2ce5122a0
-Size (mysql-5.7.23.tar.gz) = 51907462 bytes
+SHA1 (mysql-5.7.24.tar.gz) = e2f73a243659075d0100a71b8338c752c0c65de8
+RMD160 (mysql-5.7.24.tar.gz) = 67fc0207cb6fae76af0b6e18bb1f6e14d190ac4c
+SHA512 (mysql-5.7.24.tar.gz) = c3a00788b91c243696cf140d2e3a374c3154ace97413ba09bc85c2d4325ec7bf476cd7eb5bff5c33e0407fc345f12b73d4cce19894c0f8ab9e1853f6a6cfa351
+Size (mysql-5.7.24.tar.gz) = 52052796 bytes
 SHA1 (patch-CMakeLists.txt) = b47592cf8801538375da3df2990fde4d292fc365
 SHA1 (patch-client_CMakeLists.txt) = 990d6df52380981f11a4ac5aafe48f34a3b2097f
 SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb
@@ -23,17 +23,18 @@
 SHA1 (patch-mysql-test_CMakeLists.txt) = 8a8e846792077101a01731c4577c37161f70264d
 SHA1 (patch-mysys__ssl_CMakeLists.txt) = 4750125b2e98d11c9efb653beda2d4d5166adc02
 SHA1 (patch-mysys_kqueue__timers.c) = 836803e9c7353b813bc22a5b69cc263dea384c9b
+SHA1 (patch-mysys_mf__iocache2.c) = 0c5047cbd4b9fc09d9e5b18bcae324d794fe833d
 SHA1 (patch-mysys_my__symlink.c) = 23b57cd5922357d0bc72f5c15100a9fe1f89cfb2
 SHA1 (patch-mysys_stacktrace.c) = 3e0794f544f0e35f44a694330885478247657842
 SHA1 (patch-rapid_plugin_group__replication_libmysqlgcs_src_bindings_xcom_xcom_sock__probe__ix.c) = 1a389fca13ada1be74d96276e11baee16bbc2363
 SHA1 (patch-rapid_plugin_group__replication_libmysqlgcs_src_bindings_xcom_xcom_xcom__memory.c) = 7077900830f904c74c79439b856d9d176fc27f15
 SHA1 (patch-rapid_plugin_group__replication_libmysqlgcs_src_bindings_xcom_xcom_xcom__transport.c) = d7f87bff5a41ff6a130fcf74dc520b38cedf5924
 SHA1 (patch-rapid_plugin_group__replication_rpcgen.cmake) = ff0679ed644d79abe52b208f6b60b5a4e480ed3f
-SHA1 (patch-rapid_plugin_x_CMakeLists.txt) = aedf7d93889d4e7b4e04d182fe1a6775134f97e8
+SHA1 (patch-rapid_plugin_x_CMakeLists.txt) = 4f548abab6917c2bedd970abdffe4e87c460667e
 SHA1 (patch-rapid_unittest_gunit_xplugin_CMakeLists.txt) = c0ae4570e138869a3203f7d4704a0b6b5c19e517
 SHA1 (patch-scripts_CMakeLists.txt) = b149f40f65c4ce8f6f4a7adf75f5ec4be44319f1
 SHA1 (patch-scripts_mysqld_safe.sh) = 0784314227657aa0bc3f4a0b4e21c173a86fa94b
-SHA1 (patch-sql_CMakeLists.txt) = d66fe5fc8ac3a6230f1a3aa1395cf72e1a2b682e
+SHA1 (patch-sql_CMakeLists.txt) = 697add15adb66bf55cf561a6e43e0bf514d1e068
 SHA1 (patch-sql_conn__handler_socket__connection.cc) = 12cf83e061edbe59eb073037b1036903b7ba4b00
 SHA1 (patch-sql_item__geofunc__internal.cc) = 752862c3a30231e694e508ced1a215a610649fc6
 SHA1 (patch-sql_log_event.h) = 311dc7fb04ea832df229dc2a28bcfbf263670ebf
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-client/patches/patch-rapid_plugin_x_CMakeLists.txt
--- a/databases/mysql57-client/patches/patch-rapid_plugin_x_CMakeLists.txt      Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-client/patches/patch-rapid_plugin_x_CMakeLists.txt      Thu Nov 22 16:14:53 2018 +0000
@@ -1,16 +1,15 @@
-$NetBSD: patch-rapid_plugin_x_CMakeLists.txt,v 1.3 2018/04/29 21:44:12 adam Exp $
+$NetBSD: patch-rapid_plugin_x_CMakeLists.txt,v 1.4 2018/11/22 16:14:53 adam Exp $
 
-Use system OpenSSL and zlib.
+Use system OpenSSL.
 Fix mysqlxtest binary linking.
 
---- rapid/plugin/x/CMakeLists.txt.orig 2018-03-04 13:40:40.000000000 +0000
+--- rapid/plugin/x/CMakeLists.txt.orig 2018-10-04 05:48:22.000000000 +0000
 +++ rapid/plugin/x/CMakeLists.txt
-@@ -92,14 +92,14 @@ ELSE()
+@@ -92,13 +92,13 @@ ELSE()
      ${CMAKE_SOURCE_DIR}/include #temporary
      ${CMAKE_CURRENT_SOURCE_DIR}/include/mysql
      ${CMAKE_CURRENT_BINARY_DIR}/generated
 -    ${SSL_INCLUDE_DIRS}
--    ${ZLIB_INCLUDE_DIR}
    )
  
    INCLUDE_DIRECTORIES(SYSTEM
@@ -18,11 +17,10 @@
      ${PROTOBUF_INCLUDE_DIRS}
      ${LIBEVENT_INCLUDE_DIR}
 +    ${SSL_INCLUDE_DIRS}
-+    ${ZLIB_INCLUDE_DIR}
    )
  
    IF(XPLUGIN_NO_LITE_PROTOBUF)
-@@ -215,7 +215,10 @@ ELSE()
+@@ -214,7 +214,10 @@ ELSE()
    ENDIF()
  
    TARGET_LINK_LIBRARIES(mysqlxtest mysys strings mysqlclient)
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-client/patches/patch-sql_CMakeLists.txt
--- a/databases/mysql57-client/patches/patch-sql_CMakeLists.txt Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-client/patches/patch-sql_CMakeLists.txt Thu Nov 22 16:14:53 2018 +0000
@@ -1,9 +1,9 @@
-$NetBSD: patch-sql_CMakeLists.txt,v 1.1 2016/09/16 06:49:11 adam Exp $
+$NetBSD: patch-sql_CMakeLists.txt,v 1.2 2018/11/22 16:14:53 adam Exp $
 
---- sql/CMakeLists.txt.orig    2016-07-12 11:55:26.000000000 +0000
+--- sql/CMakeLists.txt.orig    2018-10-04 05:48:22.000000000 +0000
 +++ sql/CMakeLists.txt
-@@ -24,6 +24,8 @@ INCLUDE_DIRECTORIES(
-   ${ZLIB_INCLUDE_DIR}
+@@ -23,6 +23,8 @@ INCLUDE_DIRECTORIES(
+   ${CMAKE_SOURCE_DIR}/regex 
    ${SSL_INCLUDE_DIRS}
    ${CMAKE_BINARY_DIR}/sql
 +  ${CMAKE_BINARY_DIR}/include
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-server/Makefile
--- a/databases/mysql57-server/Makefile Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-server/Makefile Thu Nov 22 16:14:53 2018 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.17 2018/08/22 09:43:12 wiz Exp $
+# $NetBSD: Makefile,v 1.18 2018/11/22 16:14:53 adam Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-server-/}
-PKGREVISION=   1
 COMMENT=       MySQL 5, a free SQL database (server)
 
 CONFLICTS=     mysql3-server-[0-9]*
@@ -77,6 +76,7 @@
 SUBST_SED.perlpath=    -e 's,@PERL_PATH@,${PERL5},g'
 
 INSTALLATION_DIRS+=    bin
+TEST_TARGET=           test
 
 .include "../../mk/compiler.mk"
 
diff -r 2c75b86b794f -r 1730db509748 databases/mysql57-server/PLIST
--- a/databases/mysql57-server/PLIST    Thu Nov 22 16:10:03 2018 +0000
+++ b/databases/mysql57-server/PLIST    Thu Nov 22 16:14:53 2018 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2018/08/16 16:06:09 adam Exp $
+@comment $NetBSD: PLIST,v 1.10 2018/11/22 16:14:53 adam Exp $
 @pkgdir lib/mysql/plugin/debug
 bin/innochecksum
 bin/lz4_decompress
@@ -302,6 +302,7 @@
 share/mysql/test/extra/rpl_tests/rpl_parallel_recovery_core.test
 share/mysql/test/extra/rpl_tests/rpl_partition.test
 share/mysql/test/extra/rpl_tests/rpl_perfschema_applier_xa_status.test
+share/mysql/test/extra/rpl_tests/rpl_perfschema_order_by.test
 share/mysql/test/extra/rpl_tests/rpl_record_compare.test
 share/mysql/test/extra/rpl_tests/rpl_relayrotate.test
 share/mysql/test/extra/rpl_tests/rpl_replication_observers_example_plugin_server_startup.inc
@@ -1883,6 +1884,7 @@
 share/mysql/test/r/subquery_all.result
 share/mysql/test/r/subquery_all_bka.result
 share/mysql/test/r/subquery_all_bka_nixbnl.result
+share/mysql/test/r/subquery_bugs.result
 share/mysql/test/r/subquery_mat.result
 share/mysql/test/r/subquery_mat_all.result
 share/mysql/test/r/subquery_mat_none.result
@@ -2058,6 +2060,7 @@
 share/mysql/test/std_data/Japan
 share/mysql/test/std_data/Moscow_leap
 share/mysql/test/std_data/bad_gis_data.dat
+share/mysql/test/std_data/binlog_56_gtid_reserved_word.000001
 share/mysql/test/std_data/binlog_no_fd_event.000001
 share/mysql/test/std_data/binlog_savepoint.000001
 share/mysql/test/std_data/binlog_transaction.000001
@@ -2426,6 +2429,7 @@
 share/mysql/test/suite/binlog/r/binlog_group_commit_gtid_order.result
 share/mysql/test/suite/binlog/r/binlog_group_commit_indefinite_wait.result
 share/mysql/test/suite/binlog/r/binlog_group_commit_sync_delay.result
+share/mysql/test/suite/binlog/r/binlog_group_commit_sync_delay_error.result
 share/mysql/test/suite/binlog/r/binlog_group_commit_sync_no_delay_count.result
 share/mysql/test/suite/binlog/r/binlog_gtid_automatic_using_rolled_back.result
 share/mysql/test/suite/binlog/r/binlog_gtid_cache.result
@@ -2448,6 +2452,7 @@
 share/mysql/test/suite/binlog/r/binlog_gtid_next_temporary_table.result
 share/mysql/test/suite/binlog/r/binlog_gtid_next_xa.result
 share/mysql/test/suite/binlog/r/binlog_gtid_rbr_only_flag.result
+share/mysql/test/suite/binlog/r/binlog_gtid_reset_consistency_violation_on_fail.result
 share/mysql/test/suite/binlog/r/binlog_gtid_row_ctype_ucs.result
 share/mysql/test/suite/binlog/r/binlog_gtid_simple_recovery.result
 share/mysql/test/suite/binlog/r/binlog_gtid_state_update_deadlock.result
@@ -2616,6 +2621,7 @@
 share/mysql/test/suite/binlog/t/binlog_group_commit_gtid_order.test
 share/mysql/test/suite/binlog/t/binlog_group_commit_indefinite_wait.test
 share/mysql/test/suite/binlog/t/binlog_group_commit_sync_delay.test
+share/mysql/test/suite/binlog/t/binlog_group_commit_sync_delay_error.test
 share/mysql/test/suite/binlog/t/binlog_group_commit_sync_no_delay_count.test
 share/mysql/test/suite/binlog/t/binlog_gtid_automatic_using_rolled_back.test
 share/mysql/test/suite/binlog/t/binlog_gtid_cache-master.opt
@@ -2643,6 +2649,7 @@
 share/mysql/test/suite/binlog/t/binlog_gtid_next_temporary_table.test
 share/mysql/test/suite/binlog/t/binlog_gtid_next_xa.test
 share/mysql/test/suite/binlog/t/binlog_gtid_rbr_only_flag.test
+share/mysql/test/suite/binlog/t/binlog_gtid_reset_consistency_violation_on_fail.test
 share/mysql/test/suite/binlog/t/binlog_gtid_row_ctype_ucs.test
 share/mysql/test/suite/binlog/t/binlog_gtid_simple_recovery.test
 share/mysql/test/suite/binlog/t/binlog_gtid_state_update_deadlock.test
@@ -3656,6 +3663,8 @@
 share/mysql/test/suite/federated/include/federated_cleanup.inc
 share/mysql/test/suite/federated/include/have_federated_db.inc
 share/mysql/test/suite/federated/my.cnf
+share/mysql/test/suite/federated/r/percona_bug1739734.result
+share/mysql/test/suite/federated/t/percona_bug1739734.test
 share/mysql/test/suite/funcs_1/README.txt
 share/mysql/test/suite/funcs_1/bitdata/bitdata_master.test
 share/mysql/test/suite/funcs_1/cursors/cursors_master.test
@@ -4221,6 +4230,8 @@
 share/mysql/test/suite/group_replication/r/gr_compound_statements.result
 share/mysql/test/suite/group_replication/r/gr_compression_options.result
 share/mysql/test/suite/group_replication/r/gr_concurrent_events_insert_with_select.result
+share/mysql/test/suite/group_replication/r/gr_concurrent_start_uninstall.result
+share/mysql/test/suite/group_replication/r/gr_concurrent_stop_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
@@ -4241,6 +4252,19 @@
 share/mysql/test/suite/group_replication/r/gr_disjoint_gtids_join_option_deprecation.result
 share/mysql/test/suite/group_replication/r/gr_disregard_nonunique_key.result
 share/mysql/test/suite/group_replication/r/gr_executed_sets_compatibility.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_applier_error.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_join_lower_version.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_join_members_exceeded.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_join_transaction_mismatch.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_join_wrong_gtid_assignment_block_size.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_join_wrong_hash_algorithm.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_join_wrong_single_primary_mode.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_majority_loss.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_member_expel.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_recovery.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_recovery_stage0.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_on_start_gr_cmd.result
+share/mysql/test/suite/group_replication/r/gr_exit_state_action_option.result
 share/mysql/test/suite/group_replication/r/gr_filters.result
 share/mysql/test/suite/group_replication/r/gr_flow_control_options.result
 share/mysql/test/suite/group_replication/r/gr_flush_applier_channel.result
@@ -4356,6 +4380,7 @@
 share/mysql/test/suite/group_replication/r/gr_recovery_donor_retry.result
 share/mysql/test/suite/group_replication/r/gr_recovery_double_view_update.result
 share/mysql/test/suite/group_replication/r/gr_recovery_fails_to_detect_thread_stop.result
+share/mysql/test/suite/group_replication/r/gr_recovery_lower_max_retry_count.result
 share/mysql/test/suite/group_replication/r/gr_recovery_no_donors.result
 share/mysql/test/suite/group_replication/r/gr_recovery_no_more_donors.result
 share/mysql/test/suite/group_replication/r/gr_recovery_purged_donor_failover.result
@@ -4461,6 +4486,7 @@
 share/mysql/test/suite/group_replication/r/gr_start_stop_recovery.result
 share/mysql/test/suite/group_replication/r/gr_start_stop_slave_channel.result
 share/mysql/test/suite/group_replication/r/gr_start_stop_stress.result
+share/mysql/test/suite/group_replication/r/gr_startup_check_node_seed_skips_own_address.result
 share/mysql/test/suite/group_replication/r/gr_startup_verifications.result
 share/mysql/test/suite/group_replication/r/gr_startup_verifications_not_binlog.result
 share/mysql/test/suite/group_replication/r/gr_startup_verifications_not_gtid.result
@@ -4513,6 +4539,7 @@
 share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_nondonor.cnf
 share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_nondonor.test
 share/mysql/test/suite/group_replication/t/gr_applier_early_failure.test
+share/mysql/test/suite/group_replication/t/gr_applier_error-slave.opt
 share/mysql/test/suite/group_replication/t/gr_applier_error.test
 share/mysql/test/suite/group_replication/t/gr_applier_initialization.test
 share/mysql/test/suite/group_replication/t/gr_applier_received_set.test
@@ -4558,6 +4585,8 @@
 share/mysql/test/suite/group_replication/t/gr_compression_options.test
 share/mysql/test/suite/group_replication/t/gr_concurrent_events_insert_with_select.cnf
 share/mysql/test/suite/group_replication/t/gr_concurrent_events_insert_with_select.test
+share/mysql/test/suite/group_replication/t/gr_concurrent_start_uninstall.test
+share/mysql/test/suite/group_replication/t/gr_concurrent_stop_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
@@ -4591,6 +4620,31 @@
 share/mysql/test/suite/group_replication/t/gr_disregard_nonunique_key.test
 share/mysql/test/suite/group_replication/t/gr_executed_sets_compatibility.cnf
 share/mysql/test/suite/group_replication/t/gr_executed_sets_compatibility.test
+share/mysql/test/suite/group_replication/t/gr_exit_state_action_on_applier_error.cnf
+share/mysql/test/suite/group_replication/t/gr_exit_state_action_on_applier_error.test



Home | Main Index | Thread Index | Old Index