Tue Feb 5 20:19:55 2019 UTC ()
mysql57-{client,server}: updated to 5.7.25

Changes in MySQL 5.7.25

Deprecation and Removal Notes

The resolveip and resolve_stack_dump utilities are now deprecated and will be removed in MySQL 8.0. nslookup, host, or dig can be used instead of resolveip. Stack traces from official MySQL builds are always symbolized, so there is no need to use resolve_stack_dump.

Pluggable Authentication

If the LDAP port number is configured as 636 or 3269, the plugin now uses LDAPS (LDAP over SSL) instead of LDAP. The port number is settable using the authentication_ldap_sasl_server_port or authentication_ldap_simple_server_port system variable. (LDAPS differs from startTLS.)

Previously, for LDAP authentication with proxying, LDAP authentication plugins used the first group name returned by the LDAP server as the MySQL proxy user account name. The authentication string for a MySQL account now can specify a list of groups to match, in preference order, and can optionally map the matching group name to a specified MySQL proxy user name. See LDAP Pluggable Authentication.

Security Notes

The linked OpenSSL library for the MySQL Commercial Server has been updated to version 1.0.2q. Issues fixed in the new OpenSSL version are described at http://www.openssl.org/news/vulnerabilities.html.

This change does not affect the Oracle-produced MySQL Community build of MySQL Server, which uses the yaSSL library instead.

Functionality Added or Changed

Microsoft Windows: The access control granted to clients on the named pipe created by the MySQL server now is set to the minimum necessary for successful communication on Windows. Newer MySQL client software can open named pipe connections without any additional configuration. If older client software cannot be upgraded immediately, the new named_pipe_full_access_group server system variable can be used to give a Windows group the necessary permissions to open a named pipe connection. Membership in the full-access group should be restricted and temporary.

Bugs Fixed

InnoDB: A dangling pointer caused a memory leak.

InnoDB: An ON DELETE CASCADE operation on table with a foreign key constraint and an indexed virtual column caused the server to exit.

InnoDB: An incorrectly written DML log involving a virtual column value raised an assertion.

InnoDB: Using the O_DIRECT_NO_FSYNC innodb_flush_method setting could cause the system to hang due to file system metadata becoming unsynchronized. To prevent this issue from occurring in O_DIRECT_NO_FSYNC mode, InnoDB now calls fsync() after creating a new file, after increasing file size, and after closing a file. The fsync() system call is still skipped after each write operation.

With the changes described above, O_DIRECT_NO_FSYNC mode can now be safely used on EXT4 and XFS file systems.

InnoDB: An assertion was raised when attempting to write to a tablespace file greater than 4GB in size on a 64-bit Windows system. The failure was due to a narrowing cast.

Partitioning: Repeated ALTER TABLE statements on partitioned tables containing BLOB or TEXT columns were not always handled correctly.

Partitioning: ALTER TABLE ... EXCHANGE PARTITION did not work when the partitioned table had one or more partition definitions using the DATA DIRECTORY option. This fix supports partitioned tables using the InnoDB storage engine only.

Replication: A patch to correct the handling of quotes for identifiers in ROLLBACK TO SAVEPOINT statements in the binary log was not correctly applied to subsequent MySQL versions.

Replication: Following a patch in MySQL 5.7.23, LOAD DATA statements stopped statement-based replication from a MySQL 5.7.22 master to a replication slave at a later release. The problem has now been fixed.

Replication: In some circumstances, the CHANGE MASTER TO statement could not be used on a replication slave if the master info log had been changed from a table (master_info_repository=TABLE) into a file (master_info_repository=FILE).

Replication: When the system variables binlog_transaction_dependency_tracking and binlog_transaction_dependency_history_size were set or read, the types of lock that were required could result in a deadlock scenario, because the same locks were also required for working with the active binary logs. A new lock type is now used instead for access to the transaction dependency tracking system variables, so that this deadlock cannot occur.

Replication: The PURGE BINARY LOGS TO 'log_name' statement failed for binary log files that had been moved to another location using mysqlbinlogmove. Such files are still listed in the binary log index file, but they are listed using an absolute path, rather than a path relative to the directory where the binary log files are normally stored. MySQL Server can now locate and purge moved binary log files successfully.

Replication: If autocommit was set to 0 for a replication slave or Group Replication group member where GTIDs were in use and super_read_only=ON was set, server shutdown was prevented by a transaction that did not complete. The transaction was attempting to save GTIDs to the mysql.gtid_executed table, but the update failed because super_read_only=ON was set. (With autocommit set to 1, the transaction would complete in this situation, and the mysql.gtid_executed table would instead be updated at server startup.) Now, the check for the super_read_only setting is skipped for this task, so the transaction is able to save the GTIDs to the mysql.gtid_executed table and complete regardless of the combination of super_read_only and autocommit settings.

Replication: An assertion was raised in debug builds if an XA ROLLBACK statement was issued for an unknown transaction identifier when the gtid_next value had been set manually. The server now does not attempt to update the GTID state if an XA ROLLBACK statement fails with an error.

Replication: The value returned by a SHOW SLAVE STATUS statement for the total combined size of all existing relay log files (Relay_Log_Space) could become much larger than the actual disk space used by the relay log files. The I/O thread did not lock the variable while it updated the value, so the SQL thread could automatically delete a relay log file and write a reduced value before the I/O thread finished updating the value. The I/O thread then wrote its original size calculation, ignoring the SQL thread's update and so adding back the space for the deleted file. The Relay_Log_Space value is now locked during updates to prevent concurrent updates and ensure an accurate calculation.

Replication: If the relay log index file was temporarily locked for viewing by a backup process for a replication slave, and MySQL Server also attempted to access the file at that time for rename or delete operations, the backup completed with warnings, but MySQL Server experienced an unexpected halt. MySQL Server now retries the file access operation a number of times in case this or a similar scenario is the explanation and the file becomes available again before long.

Replication: With sync_binlog=1 set, if the binary log was rotated during a commit before the binary log end position was updated, replication stopped on the slave because the server attempted to use the old binary log end position with the new binary log file. The server now compares the binary log file name with the active binary log file when updating the binary log end position, so that the issue does not occur.

Replication: When adding a new member to a group, if the certification information was too big to transmit, an event was generated that caused failures in all group members. To avoid this situation, now if the certification information is too large an error is generated which makes the joining member leave the group.

Replication: When stopping replication, any channels that had pending transactions could cause a deadlock in Group Replication.

The keyring_aws plugin was missing from Commercial packages for macOS.

The supported macOS versions for this plugin now are macOS 10.13 and 10.14.

MySQL Enterprise Firewall did not work well if the audit_log plugin was installed.

The server permitted creation of databases with the same name as redo log files, which could result in unexpected server behavior. Such names are no longer permitted as database names.

Removal of Sun RPC and XDR from glibc into a separate libtirpc library caused problems with libasan on some platforms.

In LDAP group search filter values, special characters were not escaped. Special characters in the user DN now are escaped with their hexadecimal equivalant as follows:

*  =>  \2a
(  =>  \28
)  =>  \29
\  =>  \5c
\0 =>  \00

A memory leak was caused by GET_LOCK() calls with a zero timeout that failed due to concurrent connections holding the same user-level lock.

mysqlpump did not free all allocated resources when it encountered an error, resulting in memory leaks.

For debug builds, the server could exit when attempting to roll back CREATE USER statements.

Mishandling of deprecated system variables could cause output from queries on the Performance Schema variables_by_thread table to be incorrect.

When a subquery contained a UNION, the count of the number of subquery columns was calculated incorrectly.

On a GTID-enabled server, concurrent statements on the INFORMATION_SCHEMA.COLUMNS table could deadlock.

Comparing log file names as strings using the memcmp() function resulted in uninitialized memory read errors. The comparison now uses the strncmp() function. Thanks to Zsolt Parragi and Laurynas Biveinis for their contributions.

The optimizer skipped the second column in a composite index when executing an inner join with a LIKE clause against the second column.

CREATE TABLE ... SELECT could create date columns with ���zero��� date default values when it should have created them without a default value.

The transformation of IN subquery predicates into semijoins was not handled correctly for a very large number of tables.

Server mishandling of SIGHUP signals could result in a server exit.

When the character set of one string comparison operand was a superset of the character set of the other operand, some comparisons were disallowed that should be permitted by converting the operand with the ���smaller��� character set to the ���larger��� character set. utf8mb4 and utf32 are considered to be a superset of any other encoding.

Improper memory handling by account management statements could result in server misbehavior.

Executing a prepared statement to do a multiple-row insert with large number of placeholders consumed excessive memory and could execute slowly.

The parser accepted invalid SET statement syntax in trigger definitions that could result in a server exit.

The server failed to start if the keyring_encrypted_file plugin keyring file was invalid.

Keyring migration failed with source and destination keyring plugins of keyring_okv and keyring_encrypted_file, respectively.

When executing a prepared statement with a procedure call with the CURSOR_TYPE_READ_ONLY flag set, the client library hung if the procedure performed a SELECT that returned an empty result set.

The parser performed some out-of-memory checks incorrectly.

When binlog_format is ROW or MIXED, operations on temporary tables are not logged. Previously, the exception to this rule was that when the connection was terminated at the end of the session, the statement DROP TEMPORARY TABLE IF EXISTS was logged for any temporary tables that had been opened in the session. For row-based replication, this behavior caused an unnecessary write to the binary log, and added a transaction sequence number for the GTID where these were enabled.

Now, when a temporary table is created in a session, the binary logging format is tracked. The DROP TEMPORARY TABLE IF EXISTS statement is only logged at the end of the session if statement-based format was in effect when the temporary table was created, so the CREATE TEMPORARY TABLE statement was logged. If row-based or mixed-format binary logging was in use when the table was created, the DROP TEMPORARY TABLE IF EXISTS statement is not logged.

Thanks to Laurynas Biveinis for the patch.

DML statements using IGNORE were not always handled correctly on tables having generated columns.

A query employing a dynamic range and an index merge could use more memory than expected.


(adam)
diff -r1.19 -r1.20 pkgsrc/databases/mysql57-client/Makefile
diff -r1.14 -r1.15 pkgsrc/databases/mysql57-client/Makefile.common
diff -r1.11 -r1.12 pkgsrc/databases/mysql57-client/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/mysql57-client/buildlink3.mk
diff -r1.2 -r1.3 pkgsrc/databases/mysql57-client/options.mk
diff -r1.27 -r1.28 pkgsrc/databases/mysql57-client/distinfo
diff -r1.19 -r1.20 pkgsrc/databases/mysql57-server/Makefile
diff -r1.10 -r1.11 pkgsrc/databases/mysql57-server/PLIST

cvs diff -r1.19 -r1.20 pkgsrc/databases/mysql57-client/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-client/Makefile 2019/01/20 18:22:10 1.19
+++ pkgsrc/databases/mysql57-client/Makefile 2019/02/05 20:19:55 1.20
@@ -1,16 +1,15 @@ @@ -1,16 +1,15 @@
1# $NetBSD: Makefile,v 1.19 2019/01/20 18:22:10 maya Exp $ 1# $NetBSD: Makefile,v 1.20 2019/02/05 20:19:55 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/-client-/} 3PKGNAME= ${DISTNAME:S/-/-client-/}
4PKGREVISION= 2 
5COMMENT= MySQL 5, a free SQL database (client) 4COMMENT= MySQL 5, a free SQL database (client)
6 5
7CONFLICTS= mysql3-client-[0-9]* 6CONFLICTS= mysql3-client-[0-9]*
8 7
9.include "Makefile.common" 8.include "Makefile.common"
10 9
11CMAKE_ARGS+= -DWITHOUT_SERVER=ON 10CMAKE_ARGS+= -DWITHOUT_SERVER=ON
12UNWRAP_FILES+= scripts/mysql_config 11UNWRAP_FILES+= scripts/mysql_config
13INFO_FILES= yes 12INFO_FILES= yes
14INSTALL_DIRS+= client include libmysql man scripts testclients 13INSTALL_DIRS+= client include libmysql man scripts testclients
15 14
16.include "../../mk/bsd.pkg.mk" 15.include "../../mk/bsd.pkg.mk"

cvs diff -r1.14 -r1.15 pkgsrc/databases/mysql57-client/Makefile.common (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-client/Makefile.common 2018/11/25 18:30:03 1.14
+++ pkgsrc/databases/mysql57-client/Makefile.common 2019/02/05 20:19:55 1.15
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile.common,v 1.14 2018/11/25 18:30:03 maya Exp $ 1# $NetBSD: Makefile.common,v 1.15 2019/02/05 20:19:55 adam Exp $
2# 2#
3# used by databases/mysql57-client/Makefile 3# used by databases/mysql57-client/Makefile
4# used by databases/mysql57-server/Makefile 4# used by databases/mysql57-server/Makefile
5 5
6DISTNAME= mysql-5.7.24 6DISTNAME= mysql-5.7.25
7CATEGORIES= databases 7CATEGORIES= databases
8MASTER_SITES= ${MASTER_SITE_MYSQL:=MySQL-5.7/} 8MASTER_SITES= ${MASTER_SITE_MYSQL:=MySQL-5.7/}
9 9
10MAINTAINER?= pkgsrc-users@NetBSD.org 10MAINTAINER?= pkgsrc-users@NetBSD.org
11HOMEPAGE= https://www.mysql.com/ 11HOMEPAGE= https://www.mysql.com/
12LICENSE= gnu-gpl-v2 12LICENSE= gnu-gpl-v2
13 13
14DISTINFO_FILE?= ${.CURDIR}/../../databases/mysql57-client/distinfo 14DISTINFO_FILE?= ${.CURDIR}/../../databases/mysql57-client/distinfo
15PATCHDIR?= ${.CURDIR}/../../databases/mysql57-client/patches 15PATCHDIR?= ${.CURDIR}/../../databases/mysql57-client/patches
16 16
17USE_CMAKE= yes 17USE_CMAKE= yes
18USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
19USE_TOOLS+= bash bison gmake perl:run 19USE_TOOLS+= bash bison gmake perl:run
@@ -56,33 +56,33 @@ CMAKE_ARGS+= -DINSTALL_MYSQLTESTDIR="sh @@ -56,33 +56,33 @@ CMAKE_ARGS+= -DINSTALL_MYSQLTESTDIR="sh
56CMAKE_ARGS+= -DINSTALL_PLUGINDIR="lib/mysql/plugin" 56CMAKE_ARGS+= -DINSTALL_PLUGINDIR="lib/mysql/plugin"
57CMAKE_ARGS+= -DINSTALL_SBINDIR="sbin" 57CMAKE_ARGS+= -DINSTALL_SBINDIR="sbin"
58CMAKE_ARGS+= -DINSTALL_SCRIPTDIR="bin" 58CMAKE_ARGS+= -DINSTALL_SCRIPTDIR="bin"
59CMAKE_ARGS+= -DINSTALL_SQLBENCHDIR="share/mysql/sql-bench" 59CMAKE_ARGS+= -DINSTALL_SQLBENCHDIR="share/mysql/sql-bench"
60CMAKE_ARGS+= -DINSTALL_SUPPORTFILESDIR="share/mysql" 60CMAKE_ARGS+= -DINSTALL_SUPPORTFILESDIR="share/mysql"
61CMAKE_ARGS+= -DMYSQL_DATADIR=${MYSQL_DATADIR} 61CMAKE_ARGS+= -DMYSQL_DATADIR=${MYSQL_DATADIR}
62 62
63CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release 63CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
64 64
65CMAKE_ARGS+= -DWITH_BOOST="system" 65CMAKE_ARGS+= -DWITH_BOOST="system"
66CMAKE_ARGS+= -DWITH_LZ4="system" 66CMAKE_ARGS+= -DWITH_LZ4="system"
67CMAKE_ARGS+= -DWITH_SSL="system" 67CMAKE_ARGS+= -DWITH_SSL="system"
68CMAKE_ARGS+= -DWITH_ZLIB="system" 68CMAKE_ARGS+= -DWITH_ZLIB="system"
69CMAKE_ARGS+= -DDEFAULT_CHARSET=${MYSQL_CHARSET:Q} 69CMAKE_ARGS+= -DDEFAULT_CHARSET=${MYSQL_CHARSET}
70CMAKE_ARGS+= -DDEFAULT_COLLATION=${MYSQL_COLLATION:Q} 70CMAKE_ARGS+= -DDEFAULT_COLLATION=${MYSQL_COLLATION}
71CMAKE_ARGS+= -DWITH_EXTRA_CHARSETS=${MYSQL_EXTRA_CHARSET:Q} 71CMAKE_ARGS+= -DWITH_EXTRA_CHARSETS=${MYSQL_EXTRA_CHARSET}
72 72
73 73
74# we need atomic builtins 74# we need atomic builtins
75.if ${OPSYS} == "NetBSD" && !empty(MACHINE_ARCH:Mi386) 75.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "i386"
76GNU_ARCH.i386= i586 76GNU_ARCH.i386= i586
77CFLAGS+= -march=i586 77CFLAGS+= -march=i586
78.endif 78.endif
79 79
80CPPFLAGS+= -Dunix 80CPPFLAGS+= -Dunix
81CFLAGS+= -DUSE_OLD_FUNCTIONS # 3.23.x compat 81CFLAGS+= -DUSE_OLD_FUNCTIONS # 3.23.x compat
82#CFLAGS+= -D__STDC_FORMAT_MACROS=1 # always defined too late 82#CFLAGS+= -D__STDC_FORMAT_MACROS=1 # always defined too late
83 83
84.if ${OPSYS} != "Interix" 84.if ${OPSYS} != "Interix"
85CFLAGS+= -fPIC -DPIC 85CFLAGS+= -fPIC -DPIC
86CXXFLAGS+= -fPIC -DPIC 86CXXFLAGS+= -fPIC -DPIC
87.endif 87.endif
88 88

cvs diff -r1.11 -r1.12 pkgsrc/databases/mysql57-client/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-client/PLIST 2018/11/22 16:14:53 1.11
+++ pkgsrc/databases/mysql57-client/PLIST 2019/02/05 20:19:55 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.11 2018/11/22 16:14:53 adam Exp $ 1@comment $NetBSD: PLIST,v 1.12 2019/02/05 20:19:55 adam Exp $
2bin/mysql 2bin/mysql
3bin/mysql_client_test 3bin/mysql_client_test
4bin/mysql_config 4bin/mysql_config
5bin/mysql_config_editor 5bin/mysql_config_editor
6bin/mysql_ssl_rsa_setup 6bin/mysql_ssl_rsa_setup
7bin/mysqladmin 7bin/mysqladmin
8bin/mysqlbinlog 8bin/mysqlbinlog
9bin/mysqlcheck 9bin/mysqlcheck
10bin/mysqldump 10bin/mysqldump
11bin/mysqlimport 11bin/mysqlimport
12bin/mysqlpump 12bin/mysqlpump
13bin/mysqlshow 13bin/mysqlshow
14bin/mysqlslap 14bin/mysqlslap
@@ -112,27 +112,27 @@ include/mysql/plugin_keyring.h @@ -112,27 +112,27 @@ include/mysql/plugin_keyring.h
112include/mysql/plugin_validate_password.h 112include/mysql/plugin_validate_password.h
113include/mysql/sql_common.h 113include/mysql/sql_common.h
114include/mysql/sql_state.h 114include/mysql/sql_state.h
115include/mysql/sslopt-case.h 115include/mysql/sslopt-case.h
116include/mysql/sslopt-longopts.h 116include/mysql/sslopt-longopts.h
117include/mysql/sslopt-vars.h 117include/mysql/sslopt-vars.h
118include/mysql/thr_cond.h 118include/mysql/thr_cond.h
119include/mysql/thr_mutex.h 119include/mysql/thr_mutex.h
120include/mysql/thr_rwlock.h 120include/mysql/thr_rwlock.h
121include/mysql/typelib.h 121include/mysql/typelib.h
122lib/libmysqlclient.a 122lib/libmysqlclient.a
123lib/libmysqlclient.so 123lib/libmysqlclient.so
124lib/libmysqlclient.so.20 124lib/libmysqlclient.so.20
125lib/libmysqlclient.so.20.3.11 125lib/libmysqlclient.so.20.3.12
126lib/pkgconfig/mysqlclient.pc 126lib/pkgconfig/mysqlclient.pc
127man/man1/comp_err.1 127man/man1/comp_err.1
128man/man1/innochecksum.1 128man/man1/innochecksum.1
129man/man1/lz4_decompress.1 129man/man1/lz4_decompress.1
130man/man1/my_print_defaults.1 130man/man1/my_print_defaults.1
131man/man1/myisam_ftdump.1 131man/man1/myisam_ftdump.1
132man/man1/myisamchk.1 132man/man1/myisamchk.1
133man/man1/myisamlog.1 133man/man1/myisamlog.1
134man/man1/myisampack.1 134man/man1/myisampack.1
135man/man1/mysql.1 135man/man1/mysql.1
136man/man1/mysql.server.1 136man/man1/mysql.server.1
137man/man1/mysql_config.1 137man/man1/mysql_config.1
138man/man1/mysql_config_editor.1 138man/man1/mysql_config_editor.1

cvs diff -r1.2 -r1.3 pkgsrc/databases/mysql57-client/buildlink3.mk (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-client/buildlink3.mk 2016/10/02 19:21:30 1.2
+++ pkgsrc/databases/mysql57-client/buildlink3.mk 2019/02/05 20:19:55 1.3
@@ -1,18 +1,19 @@ @@ -1,18 +1,19 @@
1# $NetBSD: buildlink3.mk,v 1.2 2016/10/02 19:21:30 fhajny Exp $ 1# $NetBSD: buildlink3.mk,v 1.3 2019/02/05 20:19:55 adam Exp $
2 2
3BUILDLINK_TREE+= mysql-client 3BUILDLINK_TREE+= mysql-client
4 4
5.if !defined(MYSQL_CLIENT_BUILDLINK3_MK) 5.if !defined(MYSQL_CLIENT_BUILDLINK3_MK)
6MYSQL_CLIENT_BUILDLINK3_MK:= 6MYSQL_CLIENT_BUILDLINK3_MK:=
7 7
8BUILDLINK_API_DEPENDS.mysql-client+= mysql-client>=5.7.12<5.8 8BUILDLINK_API_DEPENDS.mysql-client+= mysql-client>=5.7.12<5.8
9BUILDLINK_ABI_DEPENDS.mysql-client+= mysql-client>=5.7.12 9BUILDLINK_ABI_DEPENDS.mysql-client+= mysql-client>=5.7.12
10BUILDLINK_PKGSRCDIR.mysql-client?= ../../databases/mysql57-client 10BUILDLINK_PKGSRCDIR.mysql-client?= ../../databases/mysql57-client
11BUILDLINK_INCDIRS.mysql-client?= include/mysql 11BUILDLINK_INCDIRS.mysql-client?= include/mysql
12BUILDLINK_LIBDIRS.mysql-client?= lib 12BUILDLINK_LIBDIRS.mysql-client?= lib
13 13
 14.include "../../devel/libevent/buildlink3.mk"
14.include "../../devel/zlib/buildlink3.mk" 15.include "../../devel/zlib/buildlink3.mk"
15.include "../../security/openssl/buildlink3.mk" 16.include "../../security/openssl/buildlink3.mk"
16.endif # MYSQL_CLIENT_BUILDLINK3_MK 17.endif # MYSQL_CLIENT_BUILDLINK3_MK
17 18
18BUILDLINK_TREE+= -mysql-client 19BUILDLINK_TREE+= -mysql-client

cvs diff -r1.2 -r1.3 pkgsrc/databases/mysql57-client/options.mk (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-client/options.mk 2017/04/11 20:49:15 1.2
+++ pkgsrc/databases/mysql57-client/options.mk 2019/02/05 20:19:55 1.3
@@ -1,38 +1,37 @@ @@ -1,38 +1,37 @@
1# $NetBSD: options.mk,v 1.2 2017/04/11 20:49:15 adam Exp $ 1# $NetBSD: options.mk,v 1.3 2019/02/05 20:19:55 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5 3PKG_OPTIONS_VAR= PKG_OPTIONS.mysql5
4 4
5# ndb-cluster does not configure with cmake 5# ndb-cluster does not configure with cmake
6PKG_SUPPORTED_OPTIONS+= dtrace embedded-server ndb-cluster 6PKG_SUPPORTED_OPTIONS+= dtrace embedded-server ndb-cluster
7PKG_SUPPORTED_OPTIONS+= memcached 7PKG_SUPPORTED_OPTIONS+= memcached
8PKG_SUGGESTED_OPTIONS+= embedded-server 8PKG_SUGGESTED_OPTIONS+= embedded-server
9 9
10.include "../../mk/bsd.options.mk" 10.include "../../mk/bsd.options.mk"
11 11
12# Enable DTrace support 12# Enable DTrace support
13.if !empty(PKG_OPTIONS:Mdtrace) 13.if !empty(PKG_OPTIONS:Mdtrace)
14CMAKE_ARGS+= -DENABLE_DTRACE=ON 14CMAKE_ARGS+= -DENABLE_DTRACE=ON
15.else 15.else
16CMAKE_ARGS+= -DENABLE_DTRACE=OFF 16CMAKE_ARGS+= -DENABLE_DTRACE=OFF
17.endif 17.endif
18 18
19# Enable InnoDB Memcached support 19# Enable InnoDB Memcached support
20PLIST_VARS+= memcached 20PLIST_VARS+= memcached
21.if !empty(PKG_OPTIONS:Mmemcached) 21.if !empty(PKG_OPTIONS:Mmemcached)
22PLIST.memcached= yes 22PLIST.memcached= yes
23CMAKE_ARGS+= -DWITH_INNODB_MEMCACHED=ON 23CMAKE_ARGS+= -DWITH_INNODB_MEMCACHED=ON
24CMAKE_ARGS+= -DWITH_BUNDLED_MEMCACHED=ON 24CMAKE_ARGS+= -DWITH_BUNDLED_MEMCACHED=ON
25.include "../../devel/libevent/buildlink3.mk" 
26.else 25.else
27CMAKE_ARGS+= -DWITH_INNODB_MEMCACHED=OFF 26CMAKE_ARGS+= -DWITH_INNODB_MEMCACHED=OFF
28.endif 27.endif
29 28
30# Enable Sphinx SE support 29# Enable Sphinx SE support
31# http://sphinxsearch.com/docs/current.html#sphinxse-overview 30# http://sphinxsearch.com/docs/current.html#sphinxse-overview
32#PLIST_VARS+= sphinx 31#PLIST_VARS+= sphinx
33#.if !empty(PKG_OPTIONS:Msphinx) || make(distinfo) || make(makesum) || make(mdi) 32#.if !empty(PKG_OPTIONS:Msphinx) || make(distinfo) || make(makesum) || make(mdi)
34#SPHINX_VER= 2.2.11 33#SPHINX_VER= 2.2.11
35#DISTFILES= ${DEFAULT_DISTFILES} sphinx-${SPHINX_VER}-release${EXTRACT_SUFX} 34#DISTFILES= ${DEFAULT_DISTFILES} sphinx-${SPHINX_VER}-release${EXTRACT_SUFX}
36#SITES.sphinx-2.2.11-release.tar.gz= http://sphinxsearch.com/files/ 35#SITES.sphinx-2.2.11-release.tar.gz= http://sphinxsearch.com/files/
37#. if !empty(PKGPATH:Mdatabases/mysql56-server) 36#. if !empty(PKGPATH:Mdatabases/mysql56-server)
38#MESSAGE_SRC= ${PKGDIR}/MESSAGE ${PKGDIR}/MESSAGE.sphinx 37#MESSAGE_SRC= ${PKGDIR}/MESSAGE ${PKGDIR}/MESSAGE.sphinx

cvs diff -r1.27 -r1.28 pkgsrc/databases/mysql57-client/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-client/distinfo 2019/01/20 18:22:10 1.27
+++ pkgsrc/databases/mysql57-client/distinfo 2019/02/05 20:19:55 1.28
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: distinfo,v 1.27 2019/01/20 18:22:10 maya Exp $ 1$NetBSD: distinfo,v 1.28 2019/02/05 20:19:55 adam Exp $
2 2
3SHA1 (mysql-5.7.24.tar.gz) = e2f73a243659075d0100a71b8338c752c0c65de8 3SHA1 (mysql-5.7.25.tar.gz) = 78e0146050afaac9140fbfa9e49d802d02adf5b5
4RMD160 (mysql-5.7.24.tar.gz) = 67fc0207cb6fae76af0b6e18bb1f6e14d190ac4c 4RMD160 (mysql-5.7.25.tar.gz) = 080484d0d40999aa91a84cfa12069530cb79fb10
5SHA512 (mysql-5.7.24.tar.gz) = c3a00788b91c243696cf140d2e3a374c3154ace97413ba09bc85c2d4325ec7bf476cd7eb5bff5c33e0407fc345f12b73d4cce19894c0f8ab9e1853f6a6cfa351 5SHA512 (mysql-5.7.25.tar.gz) = f80e14c20f6e0914a87985eacd6718349480c0ddce800998c82580e1857f50014c40fcaf7b73b2efdbdb6499cc4d8fb7a5a75ce42375f9c318fc55c5f0dc8f76
6Size (mysql-5.7.24.tar.gz) = 52052796 bytes 6Size (mysql-5.7.25.tar.gz) = 52063298 bytes
7SHA1 (patch-CMakeLists.txt) = 1409a98380c999c6973fa3106dc35684b7c3b3cc 7SHA1 (patch-CMakeLists.txt) = 1409a98380c999c6973fa3106dc35684b7c3b3cc
8SHA1 (patch-client_CMakeLists.txt) = 990d6df52380981f11a4ac5aafe48f34a3b2097f 8SHA1 (patch-client_CMakeLists.txt) = 990d6df52380981f11a4ac5aafe48f34a3b2097f
9SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb 9SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb
10SHA1 (patch-client_mysqladmin.cc) = e1650ef3695675bcc01375bacdebcb7318218b93 10SHA1 (patch-client_mysqladmin.cc) = e1650ef3695675bcc01375bacdebcb7318218b93
11SHA1 (patch-cmake_boost.cmake) = cab30ebdff1e773d6970f541f96fce8ed51257f8 11SHA1 (patch-cmake_boost.cmake) = cab30ebdff1e773d6970f541f96fce8ed51257f8
12SHA1 (patch-cmake_build__configurations_mysql__release.cmake) = 7a1fb8c686f187db8fd9d8ad203c1f764d6e55a6 12SHA1 (patch-cmake_build__configurations_mysql__release.cmake) = 7a1fb8c686f187db8fd9d8ad203c1f764d6e55a6
13SHA1 (patch-cmake_os_SunOS.cmake) = 06e290820a75d68931fce6dfd70a0b5edd548320 13SHA1 (patch-cmake_os_SunOS.cmake) = 06e290820a75d68931fce6dfd70a0b5edd548320
14SHA1 (patch-cmake_plugin.cmake) = 92267182d4ec559a312a5a38826b9047c99b122f 14SHA1 (patch-cmake_plugin.cmake) = 92267182d4ec559a312a5a38826b9047c99b122f
15SHA1 (patch-cmake_readline.cmake) = fb79ed969240ae2984098f72c2d3fb501154902c 15SHA1 (patch-cmake_readline.cmake) = fb79ed969240ae2984098f72c2d3fb501154902c
16SHA1 (patch-cmd-line-utils_libedit_chartype.h) = 6b1453df648001ed1fc81190106e15872a69a04c 16SHA1 (patch-cmd-line-utils_libedit_chartype.h) = 6b1453df648001ed1fc81190106e15872a69a04c
17SHA1 (patch-cmd-line-utils_libedit_vi.c) = 7c5ce1d07f650815d028e435a59e5d078ec74c2f 17SHA1 (patch-cmd-line-utils_libedit_vi.c) = 7c5ce1d07f650815d028e435a59e5d078ec74c2f
18SHA1 (patch-include_CMakeLists.txt) = 944991702f046ea7a5e2b6ea4dc390f17426e55a 18SHA1 (patch-include_CMakeLists.txt) = 944991702f046ea7a5e2b6ea4dc390f17426e55a
19SHA1 (patch-include_my__compare.h) = f45bac4b488332a668b0005751856279b67401f5 19SHA1 (patch-include_my__compare.h) = f45bac4b488332a668b0005751856279b67401f5

cvs diff -r1.19 -r1.20 pkgsrc/databases/mysql57-server/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-server/Makefile 2018/12/13 19:51:45 1.19
+++ pkgsrc/databases/mysql57-server/Makefile 2019/02/05 20:19:55 1.20
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.19 2018/12/13 19:51:45 adam Exp $ 1# $NetBSD: Makefile,v 1.20 2019/02/05 20:19:55 adam Exp $
2 2
3PKGNAME= ${DISTNAME:S/-/-server-/} 3PKGNAME= ${DISTNAME:S/-/-server-/}
4PKGREVISION= 1 
5COMMENT= MySQL 5, a free SQL database (server) 4COMMENT= MySQL 5, a free SQL database (server)
6 5
7CONFLICTS= mysql3-server-[0-9]* 6CONFLICTS= mysql3-server-[0-9]*
8 7
9.include "../../databases/mysql57-client/Makefile.common" 8.include "../../databases/mysql57-client/Makefile.common"
10 9
11CMAKE_ARGS+= -DINSTALL_INFODIR=${PKGINFODIR} 10CMAKE_ARGS+= -DINSTALL_INFODIR=${PKGINFODIR}
12 11
13.if !empty(PKG_OPTIONS:Membedded-server) 12.if !empty(PKG_OPTIONS:Membedded-server)
14CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER=ON 13CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER=ON
15PLIST.embedded= yes 14PLIST.embedded= yes
16.else 15.else
17CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER=OFF 16CMAKE_ARGS+= -DWITH_EMBEDDED_SERVER=OFF
@@ -56,27 +55,27 @@ REPLACE_PERL+= mysql-test/suite/funcs_1 @@ -56,27 +55,27 @@ REPLACE_PERL+= mysql-test/suite/funcs_1
56REPLACE_PERL+= mysql-test/suite/funcs_1/lib/DataGen_modify.pl 55REPLACE_PERL+= mysql-test/suite/funcs_1/lib/DataGen_modify.pl
57REPLACE_PERL+= mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl 56REPLACE_PERL+= mysql-test/suite/funcs_2/lib/gen_charset_utf8.pl
58REPLACE_PERL+= mysql-test/suite/opt_trace/validate_json.pl 57REPLACE_PERL+= mysql-test/suite/opt_trace/validate_json.pl
59REPLACE_PERL+= mysql-test/suite/rpl/extension/bhs.pl 58REPLACE_PERL+= mysql-test/suite/rpl/extension/bhs.pl
60REPLACE_PERL+= mysql-test/suite/rpl/extension/checksum.pl 59REPLACE_PERL+= mysql-test/suite/rpl/extension/checksum.pl
61 60
62REPLACE_SH+= mysql-test/suite/rpl/t/rpl_loaddata_symlink-master.sh 61REPLACE_SH+= mysql-test/suite/rpl/t/rpl_loaddata_symlink-master.sh
63REPLACE_SH+= mysql-test/suite/rpl/t/rpl_loaddata_symlink-slave.sh 62REPLACE_SH+= mysql-test/suite/rpl/t/rpl_loaddata_symlink-slave.sh
64REPLACE_SH+= mysql-test/suite/rpl/t/rpl_misc_functions-slave.sh 63REPLACE_SH+= mysql-test/suite/rpl/t/rpl_misc_functions-slave.sh
65REPLACE_SH+= mysql-test/t/long_tmpdir-master.sh 64REPLACE_SH+= mysql-test/t/long_tmpdir-master.sh
66REPLACE_SH+= mysql-test/t/lowercase_mixed_tmpdir-master.sh 65REPLACE_SH+= mysql-test/t/lowercase_mixed_tmpdir-master.sh
67REPLACE_SH+= mysql-test/t/lowercase_mixed_tmpdir_innodb-master.sh 66REPLACE_SH+= mysql-test/t/lowercase_mixed_tmpdir_innodb-master.sh
68 67
69CHECK_INTERPRETER_SKIP+=share/mysql/test/std_data/dtrace.d 68CHECK_INTERPRETER_SKIP+= share/mysql/test/std_data/dtrace.d
70 69
71SUBST_CLASSES+= perlpath 70SUBST_CLASSES+= perlpath
72SUBST_STAGE.perlpath= pre-configure 71SUBST_STAGE.perlpath= pre-configure
73SUBST_MESSAGE.perlpath= Fixing Perl paths. 72SUBST_MESSAGE.perlpath= Fixing Perl paths.
74SUBST_FILES.perlpath= scripts/mysql_config.pl.in 73SUBST_FILES.perlpath= scripts/mysql_config.pl.in
75SUBST_FILES.perlpath+= scripts/mysqld_multi.sh 74SUBST_FILES.perlpath+= scripts/mysqld_multi.sh
76SUBST_FILES.perlpath+= scripts/mysqldumpslow.sh 75SUBST_FILES.perlpath+= scripts/mysqldumpslow.sh
77SUBST_SED.perlpath= -e 's,@PERL_PATH@,${PERL5},g' 76SUBST_SED.perlpath= -e 's,@PERL_PATH@,${PERL5},g'
78 77
79INSTALLATION_DIRS+= bin 78INSTALLATION_DIRS+= bin
80TEST_TARGET= test 79TEST_TARGET= test
81 80
82.include "../../mk/compiler.mk" 81.include "../../mk/compiler.mk"

cvs diff -r1.10 -r1.11 pkgsrc/databases/mysql57-server/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/mysql57-server/PLIST 2018/11/22 16:14:53 1.10
+++ pkgsrc/databases/mysql57-server/PLIST 2019/02/05 20:19:55 1.11
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.10 2018/11/22 16:14:53 adam Exp $ 1@comment $NetBSD: PLIST,v 1.11 2019/02/05 20:19:55 adam Exp $
2@pkgdir lib/mysql/plugin/debug 2@pkgdir lib/mysql/plugin/debug
3bin/innochecksum 3bin/innochecksum
4bin/lz4_decompress 4bin/lz4_decompress
5bin/my_print_defaults 5bin/my_print_defaults
6bin/myisam_ftdump 6bin/myisam_ftdump
7bin/myisamchk 7bin/myisamchk
8bin/myisamlog 8bin/myisamlog
9bin/myisampack 9bin/myisampack
10${PLIST.embedded}bin/mysql_client_test_embedded 10${PLIST.embedded}bin/mysql_client_test_embedded
11${PLIST.embedded}bin/mysql_embedded 11${PLIST.embedded}bin/mysql_embedded
12bin/mysql_install_db 12bin/mysql_install_db
13bin/mysql_plugin 13bin/mysql_plugin
14bin/mysql_secure_installation 14bin/mysql_secure_installation
@@ -216,26 +216,27 @@ share/mysql/test/extra/binlog_tests/gtid @@ -216,26 +216,27 @@ share/mysql/test/extra/binlog_tests/gtid
216share/mysql/test/extra/binlog_tests/gtid_next_xa_error_simul.test 216share/mysql/test/extra/binlog_tests/gtid_next_xa_error_simul.test
217share/mysql/test/extra/binlog_tests/implicit.test 217share/mysql/test/extra/binlog_tests/implicit.test
218share/mysql/test/extra/binlog_tests/insert_select-binlog.test 218share/mysql/test/extra/binlog_tests/insert_select-binlog.test
219share/mysql/test/extra/binlog_tests/logical_timestamping.inc 219share/mysql/test/extra/binlog_tests/logical_timestamping.inc
220share/mysql/test/extra/binlog_tests/mix_innodb_myisam_binlog.test 220share/mysql/test/extra/binlog_tests/mix_innodb_myisam_binlog.test
221share/mysql/test/extra/binlog_tests/mix_innodb_myisam_side_effects.test 221share/mysql/test/extra/binlog_tests/mix_innodb_myisam_side_effects.test
222share/mysql/test/extra/binlog_tests/mysqlbinlog_rewrite_db.test 222share/mysql/test/extra/binlog_tests/mysqlbinlog_rewrite_db.test
223share/mysql/test/extra/binlog_tests/mysqlbinlog_row_engine.inc 223share/mysql/test/extra/binlog_tests/mysqlbinlog_row_engine.inc
224share/mysql/test/extra/binlog_tests/mysqlbinlog_start_stop_1.inc 224share/mysql/test/extra/binlog_tests/mysqlbinlog_start_stop_1.inc
225share/mysql/test/extra/binlog_tests/mysqlbinlog_start_stop_2.inc 225share/mysql/test/extra/binlog_tests/mysqlbinlog_start_stop_2.inc
226share/mysql/test/extra/rpl_tests/check_type.inc 226share/mysql/test/extra/rpl_tests/check_type.inc
227share/mysql/test/extra/rpl_tests/create_recursive_construct.inc 227share/mysql/test/extra/rpl_tests/create_recursive_construct.inc
228share/mysql/test/extra/rpl_tests/delayed_slave_wait_on_query.inc 228share/mysql/test/extra/rpl_tests/delayed_slave_wait_on_query.inc
 229share/mysql/test/extra/rpl_tests/gtid_disconnect_drop_temporary_table.test
229share/mysql/test/extra/rpl_tests/rpl_EE_err.test 230share/mysql/test/extra/rpl_tests/rpl_EE_err.test
230share/mysql/test/extra/rpl_tests/rpl_auto_increment.test 231share/mysql/test/extra/rpl_tests/rpl_auto_increment.test
231share/mysql/test/extra/rpl_tests/rpl_auto_increment_insert_view.test 232share/mysql/test/extra/rpl_tests/rpl_auto_increment_insert_view.test
232share/mysql/test/extra/rpl_tests/rpl_auto_increment_invoke_trigger.test 233share/mysql/test/extra/rpl_tests/rpl_auto_increment_invoke_trigger.test
233share/mysql/test/extra/rpl_tests/rpl_autoinc_func_invokes_trigger.test 234share/mysql/test/extra/rpl_tests/rpl_autoinc_func_invokes_trigger.test
234share/mysql/test/extra/rpl_tests/rpl_binlog_max_cache_size.test 235share/mysql/test/extra/rpl_tests/rpl_binlog_max_cache_size.test
235share/mysql/test/extra/rpl_tests/rpl_blackhole.test 236share/mysql/test/extra/rpl_tests/rpl_blackhole.test
236share/mysql/test/extra/rpl_tests/rpl_change_master.test 237share/mysql/test/extra/rpl_tests/rpl_change_master.test
237share/mysql/test/extra/rpl_tests/rpl_change_master_bind.inc 238share/mysql/test/extra/rpl_tests/rpl_change_master_bind.inc
238share/mysql/test/extra/rpl_tests/rpl_charset.test 239share/mysql/test/extra/rpl_tests/rpl_charset.test
239share/mysql/test/extra/rpl_tests/rpl_check_gtid.inc 240share/mysql/test/extra/rpl_tests/rpl_check_gtid.inc
240share/mysql/test/extra/rpl_tests/rpl_commit_after_flush.test 241share/mysql/test/extra/rpl_tests/rpl_commit_after_flush.test
241share/mysql/test/extra/rpl_tests/rpl_conflicts.test 242share/mysql/test/extra/rpl_tests/rpl_conflicts.test
@@ -1011,26 +1012,27 @@ share/mysql/test/lib/v1/mtr_gcov.pl @@ -1011,26 +1012,27 @@ share/mysql/test/lib/v1/mtr_gcov.pl
1011share/mysql/test/lib/v1/mtr_gprof.pl 1012share/mysql/test/lib/v1/mtr_gprof.pl
1012share/mysql/test/lib/v1/mtr_im.pl 1013share/mysql/test/lib/v1/mtr_im.pl
1013share/mysql/test/lib/v1/mtr_io.pl 1014share/mysql/test/lib/v1/mtr_io.pl
1014share/mysql/test/lib/v1/mtr_match.pl 1015share/mysql/test/lib/v1/mtr_match.pl
1015share/mysql/test/lib/v1/mtr_misc.pl 1016share/mysql/test/lib/v1/mtr_misc.pl
1016share/mysql/test/lib/v1/mtr_process.pl 1017share/mysql/test/lib/v1/mtr_process.pl
1017share/mysql/test/lib/v1/mtr_report.pl 1018share/mysql/test/lib/v1/mtr_report.pl
1018share/mysql/test/lib/v1/mtr_stress.pl 1019share/mysql/test/lib/v1/mtr_stress.pl
1019share/mysql/test/lib/v1/mtr_timer.pl 1020share/mysql/test/lib/v1/mtr_timer.pl
1020share/mysql/test/lib/v1/mtr_unique.pl 1021share/mysql/test/lib/v1/mtr_unique.pl
1021share/mysql/test/lib/v1/mysql-test-run.pl 1022share/mysql/test/lib/v1/mysql-test-run.pl
1022share/mysql/test/lib/v1/ndb_config_1_node.ini 1023share/mysql/test/lib/v1/ndb_config_1_node.ini
1023share/mysql/test/lib/v1/ndb_config_2_node.ini 1024share/mysql/test/lib/v1/ndb_config_2_node.ini
 1025share/mysql/test/lsan.supp
1024share/mysql/test/mtr 1026share/mysql/test/mtr
1025share/mysql/test/mysql-stress-test.pl 1027share/mysql/test/mysql-stress-test.pl
1026share/mysql/test/mysql-test-run 1028share/mysql/test/mysql-test-run
1027share/mysql/test/mysql-test-run.pl 1029share/mysql/test/mysql-test-run.pl
1028share/mysql/test/r/1st.result 1030share/mysql/test/r/1st.result
1029share/mysql/test/r/acl_tables_errors_debug.result 1031share/mysql/test/r/acl_tables_errors_debug.result
1030share/mysql/test/r/alias.result 1032share/mysql/test/r/alias.result
1031share/mysql/test/r/almost_full.result 1033share/mysql/test/r/almost_full.result
1032share/mysql/test/r/alter_table-big.result 1034share/mysql/test/r/alter_table-big.result
1033share/mysql/test/r/alter_table.result 1035share/mysql/test/r/alter_table.result
1034share/mysql/test/r/analyze.result 1036share/mysql/test/r/analyze.result
1035share/mysql/test/r/ansi.result 1037share/mysql/test/r/ansi.result
1036share/mysql/test/r/archive-big.result 1038share/mysql/test/r/archive-big.result
@@ -2061,26 +2063,27 @@ share/mysql/test/std_data/Japan @@ -2061,26 +2063,27 @@ share/mysql/test/std_data/Japan
2061share/mysql/test/std_data/Moscow_leap 2063share/mysql/test/std_data/Moscow_leap
2062share/mysql/test/std_data/bad_gis_data.dat 2064share/mysql/test/std_data/bad_gis_data.dat
2063share/mysql/test/std_data/binlog_56_gtid_reserved_word.000001 2065share/mysql/test/std_data/binlog_56_gtid_reserved_word.000001
2064share/mysql/test/std_data/binlog_no_fd_event.000001 2066share/mysql/test/std_data/binlog_no_fd_event.000001
2065share/mysql/test/std_data/binlog_savepoint.000001 2067share/mysql/test/std_data/binlog_savepoint.000001
2066share/mysql/test/std_data/binlog_transaction.000001 2068share/mysql/test/std_data/binlog_transaction.000001
2067share/mysql/test/std_data/binlog_transaction_with_GTID.000001 2069share/mysql/test/std_data/binlog_transaction_with_GTID.000001
2068share/mysql/test/std_data/binlog_transaction_with_anonymous_GTID.000001 2070share/mysql/test/std_data/binlog_transaction_with_anonymous_GTID.000001
2069share/mysql/test/std_data/binlog_truncated_event.000001 2071share/mysql/test/std_data/binlog_truncated_event.000001
2070share/mysql/test/std_data/binlog_truncated_prev_gtid_event.000001 2072share/mysql/test/std_data/binlog_truncated_prev_gtid_event.000001
2071share/mysql/test/std_data/bug15328.cnf 2073share/mysql/test/std_data/bug15328.cnf
2072share/mysql/test/std_data/bug16171518_1.dat 2074share/mysql/test/std_data/bug16171518_1.dat
2073share/mysql/test/std_data/bug16171518_2.dat 2075share/mysql/test/std_data/bug16171518_2.dat
 2076share/mysql/test/std_data/bug16204175/Index.xml
2074share/mysql/test/std_data/bug16266.000001 2077share/mysql/test/std_data/bug16266.000001
2075share/mysql/test/std_data/bug17532932.MYD 2078share/mysql/test/std_data/bug17532932.MYD
2076share/mysql/test/std_data/bug17532932.MYI 2079share/mysql/test/std_data/bug17532932.MYI
2077share/mysql/test/std_data/bug17532932.frm 2080share/mysql/test/std_data/bug17532932.frm
2078share/mysql/test/std_data/bug18311187_account.TRG 2081share/mysql/test/std_data/bug18311187_account.TRG
2079share/mysql/test/std_data/bug18311187_ins_sum.TRN 2082share/mysql/test/std_data/bug18311187_ins_sum.TRN
2080share/mysql/test/std_data/bug19371.MYD 2083share/mysql/test/std_data/bug19371.MYD
2081share/mysql/test/std_data/bug19371.MYI 2084share/mysql/test/std_data/bug19371.MYI
2082share/mysql/test/std_data/bug19371.frm 2085share/mysql/test/std_data/bug19371.frm
2083share/mysql/test/std_data/bug20444737.sql 2086share/mysql/test/std_data/bug20444737.sql
2084share/mysql/test/std_data/bug20683959loaddata.txt 2087share/mysql/test/std_data/bug20683959loaddata.txt
2085share/mysql/test/std_data/bug21542698.dat 2088share/mysql/test/std_data/bug21542698.dat
2086share/mysql/test/std_data/bug30435_10k_items.txt 2089share/mysql/test/std_data/bug30435_10k_items.txt
@@ -2401,26 +2404,28 @@ share/mysql/test/suite/binlog/combinatio @@ -2401,26 +2404,28 @@ share/mysql/test/suite/binlog/combinatio
2401share/mysql/test/suite/binlog/include/binlog_gtid_mix_response_packet.inc 2404share/mysql/test/suite/binlog/include/binlog_gtid_mix_response_packet.inc
2402share/mysql/test/suite/binlog/r/binlog_anonymous_ownership.result 2405share/mysql/test/suite/binlog/r/binlog_anonymous_ownership.result
2403share/mysql/test/suite/binlog/r/binlog_base64_flag.result 2406share/mysql/test/suite/binlog/r/binlog_base64_flag.result
2404share/mysql/test/suite/binlog/r/binlog_bug23533.result 2407share/mysql/test/suite/binlog/r/binlog_bug23533.result
2405share/mysql/test/suite/binlog/r/binlog_bug36391.result 2408share/mysql/test/suite/binlog/r/binlog_bug36391.result
2406share/mysql/test/suite/binlog/r/binlog_cache_write_failure.result 2409share/mysql/test/suite/binlog/r/binlog_cache_write_failure.result
2407share/mysql/test/suite/binlog/r/binlog_check_flush_log_assertion.result 2410share/mysql/test/suite/binlog/r/binlog_check_flush_log_assertion.result
2408share/mysql/test/suite/binlog/r/binlog_checksum.result 2411share/mysql/test/suite/binlog/r/binlog_checksum.result
2409share/mysql/test/suite/binlog/r/binlog_crash_safe_master_checksum.result 2412share/mysql/test/suite/binlog/r/binlog_crash_safe_master_checksum.result
2410share/mysql/test/suite/binlog/r/binlog_database.result 2413share/mysql/test/suite/binlog/r/binlog_database.result
2411share/mysql/test/suite/binlog/r/binlog_delete_and_flush_index.result 2414share/mysql/test/suite/binlog/r/binlog_delete_and_flush_index.result
2412share/mysql/test/suite/binlog/r/binlog_dmls_on_tmp_tables_readonly.result 2415share/mysql/test/suite/binlog/r/binlog_dmls_on_tmp_tables_readonly.result
2413share/mysql/test/suite/binlog/r/binlog_drop_if_exists.result 2416share/mysql/test/suite/binlog/r/binlog_drop_if_exists.result
 2417share/mysql/test/suite/binlog/r/binlog_drop_temp_table_on_disconnect_row_mix.result
 2418share/mysql/test/suite/binlog/r/binlog_drop_temp_table_on_disconnect_stmt.result
2414share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_create_select_consistent.result 2419share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_create_select_consistent.result
2415share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_create_select_violation.result 2420share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_create_select_violation.result
2416share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_multiple_warnings.result 2421share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_multiple_warnings.result
2417share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_option.result 2422share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_option.result
2418share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_tmp_consistent.result 2423share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_tmp_consistent.result
2419share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_tmp_violation.result 2424share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_tmp_violation.result
2420share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_consistent.result 2425share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_consistent.result
2421share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_violation.result 2426share/mysql/test/suite/binlog/r/binlog_enforce_gtid_consistency_trx_nontrx_violation.result
2422share/mysql/test/suite/binlog/r/binlog_error_action.result 2427share/mysql/test/suite/binlog/r/binlog_error_action.result
2423share/mysql/test/suite/binlog/r/binlog_flush_logs_error.result 2428share/mysql/test/suite/binlog/r/binlog_flush_logs_error.result
2424share/mysql/test/suite/binlog/r/binlog_foreign_key_parent_table_deleted.result 2429share/mysql/test/suite/binlog/r/binlog_foreign_key_parent_table_deleted.result
2425share/mysql/test/suite/binlog/r/binlog_format_switch_in_tmp_table.result 2430share/mysql/test/suite/binlog/r/binlog_format_switch_in_tmp_table.result
2426share/mysql/test/suite/binlog/r/binlog_grant.result 2431share/mysql/test/suite/binlog/r/binlog_grant.result
@@ -2447,26 +2452,27 @@ share/mysql/test/suite/binlog/r/binlog_g @@ -2447,26 +2452,27 @@ share/mysql/test/suite/binlog/r/binlog_g
2447share/mysql/test/suite/binlog/r/binlog_gtid_mysqldump.result 2452share/mysql/test/suite/binlog/r/binlog_gtid_mysqldump.result
2448share/mysql/test/suite/binlog/r/binlog_gtid_next_begin_caused_trx.result 2453share/mysql/test/suite/binlog/r/binlog_gtid_next_begin_caused_trx.result
2449share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_grant.result 2454share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_grant.result
2450share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_stmts.result 2455share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_stmts.result
2451share/mysql/test/suite/binlog/r/binlog_gtid_next_single_stmt_trx_rollback.result 2456share/mysql/test/suite/binlog/r/binlog_gtid_next_single_stmt_trx_rollback.result
2452share/mysql/test/suite/binlog/r/binlog_gtid_next_temporary_table.result 2457share/mysql/test/suite/binlog/r/binlog_gtid_next_temporary_table.result
2453share/mysql/test/suite/binlog/r/binlog_gtid_next_xa.result 2458share/mysql/test/suite/binlog/r/binlog_gtid_next_xa.result
2454share/mysql/test/suite/binlog/r/binlog_gtid_rbr_only_flag.result 2459share/mysql/test/suite/binlog/r/binlog_gtid_rbr_only_flag.result
2455share/mysql/test/suite/binlog/r/binlog_gtid_reset_consistency_violation_on_fail.result 2460share/mysql/test/suite/binlog/r/binlog_gtid_reset_consistency_violation_on_fail.result
2456share/mysql/test/suite/binlog/r/binlog_gtid_row_ctype_ucs.result 2461share/mysql/test/suite/binlog/r/binlog_gtid_row_ctype_ucs.result
2457share/mysql/test/suite/binlog/r/binlog_gtid_simple_recovery.result 2462share/mysql/test/suite/binlog/r/binlog_gtid_simple_recovery.result
2458share/mysql/test/suite/binlog/r/binlog_gtid_state_update_deadlock.result 2463share/mysql/test/suite/binlog/r/binlog_gtid_state_update_deadlock.result
2459share/mysql/test/suite/binlog/r/binlog_gtid_stm_ctype_ucs.result 2464share/mysql/test/suite/binlog/r/binlog_gtid_stm_ctype_ucs.result
 2465share/mysql/test/suite/binlog/r/binlog_gtid_unknown_xid.result
2460share/mysql/test/suite/binlog/r/binlog_gtid_utils.result 2466share/mysql/test/suite/binlog/r/binlog_gtid_utils.result
2461share/mysql/test/suite/binlog/r/binlog_gtids_table_gcov.result 2467share/mysql/test/suite/binlog/r/binlog_gtids_table_gcov.result
2462share/mysql/test/suite/binlog/r/binlog_hexdump.result 2468share/mysql/test/suite/binlog/r/binlog_hexdump.result
2463share/mysql/test/suite/binlog/r/binlog_implicit_commit.result 2469share/mysql/test/suite/binlog/r/binlog_implicit_commit.result
2464share/mysql/test/suite/binlog/r/binlog_incident.result 2470share/mysql/test/suite/binlog/r/binlog_incident.result
2465share/mysql/test/suite/binlog/r/binlog_incident_ignore.result 2471share/mysql/test/suite/binlog/r/binlog_incident_ignore.result
2466share/mysql/test/suite/binlog/r/binlog_index.result 2472share/mysql/test/suite/binlog/r/binlog_index.result
2467share/mysql/test/suite/binlog/r/binlog_innodb.result 2473share/mysql/test/suite/binlog/r/binlog_innodb.result
2468share/mysql/test/suite/binlog/r/binlog_innodb_row.result 2474share/mysql/test/suite/binlog/r/binlog_innodb_row.result
2469share/mysql/test/suite/binlog/r/binlog_killed.result 2475share/mysql/test/suite/binlog/r/binlog_killed.result
2470share/mysql/test/suite/binlog/r/binlog_killed_simulate.result 2476share/mysql/test/suite/binlog/r/binlog_killed_simulate.result
2471share/mysql/test/suite/binlog/r/binlog_max_extension.result 2477share/mysql/test/suite/binlog/r/binlog_max_extension.result
2472share/mysql/test/suite/binlog/r/binlog_max_flush_queue_time_warn.result 2478share/mysql/test/suite/binlog/r/binlog_max_flush_queue_time_warn.result
@@ -2480,53 +2486,56 @@ share/mysql/test/suite/binlog/r/binlog_m @@ -2480,53 +2486,56 @@ share/mysql/test/suite/binlog/r/binlog_m
2480share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_filter.result 2486share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_filter.result
2481share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_intvar.result 2487share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_intvar.result
2482share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_raw.result 2488share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_raw.result
2483share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_rewrite_db.result 2489share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_rewrite_db.result
2484share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row.result 2490share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row.result
2485share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row_innodb.result 2491share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row_innodb.result
2486share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row_myisam.result 2492share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row_myisam.result
2487share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row_trans.result 2493share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_row_trans.result
2488share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_start_stop.result 2494share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_start_stop.result
2489share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_start_stop_slave_server_id.result 2495share/mysql/test/suite/binlog/r/binlog_mysqlbinlog_start_stop_slave_server_id.result
2490share/mysql/test/suite/binlog/r/binlog_nogtid_mix_response_packet.result 2496share/mysql/test/suite/binlog/r/binlog_nogtid_mix_response_packet.result
2491share/mysql/test/suite/binlog/r/binlog_old_versions.result 2497share/mysql/test/suite/binlog/r/binlog_old_versions.result
2492share/mysql/test/suite/binlog/r/binlog_purge_binary_logs_stall.result 2498share/mysql/test/suite/binlog/r/binlog_purge_binary_logs_stall.result
 2499share/mysql/test/suite/binlog/r/binlog_purge_binary_logs_to.result
2493share/mysql/test/suite/binlog/r/binlog_query_filter_rules.result 2500share/mysql/test/suite/binlog/r/binlog_query_filter_rules.result
2494share/mysql/test/suite/binlog/r/binlog_rbr_only_savepoint.result 2501share/mysql/test/suite/binlog/r/binlog_rbr_only_savepoint.result
2495share/mysql/test/suite/binlog/r/binlog_reset_connection_not_reset_writeset.result 2502share/mysql/test/suite/binlog/r/binlog_reset_connection_not_reset_writeset.result
2496share/mysql/test/suite/binlog/r/binlog_reset_master.result 2503share/mysql/test/suite/binlog/r/binlog_reset_master.result
2497share/mysql/test/suite/binlog/r/binlog_rewrite.result 2504share/mysql/test/suite/binlog/r/binlog_rewrite.result
2498share/mysql/test/suite/binlog/r/binlog_rewrite_db_noleak.result 2505share/mysql/test/suite/binlog/r/binlog_rewrite_db_noleak.result
2499share/mysql/test/suite/binlog/r/binlog_rewrite_order.result 2506share/mysql/test/suite/binlog/r/binlog_rewrite_order.result
2500share/mysql/test/suite/binlog/r/binlog_rewrite_suppress_use.result 2507share/mysql/test/suite/binlog/r/binlog_rewrite_suppress_use.result
2501share/mysql/test/suite/binlog/r/binlog_rotate_bgc_sync.result 2508share/mysql/test/suite/binlog/r/binlog_rotate_bgc_sync.result
2502share/mysql/test/suite/binlog/r/binlog_row_binlog.result 2509share/mysql/test/suite/binlog/r/binlog_row_binlog.result
2503share/mysql/test/suite/binlog/r/binlog_row_cache_stat.result 2510share/mysql/test/suite/binlog/r/binlog_row_cache_stat.result
2504share/mysql/test/suite/binlog/r/binlog_row_create_select_crash.result 2511share/mysql/test/suite/binlog/r/binlog_row_create_select_crash.result
2505share/mysql/test/suite/binlog/r/binlog_row_ctype_cp932.result 2512share/mysql/test/suite/binlog/r/binlog_row_ctype_cp932.result
2506share/mysql/test/suite/binlog/r/binlog_row_ctype_ucs.result 2513share/mysql/test/suite/binlog/r/binlog_row_ctype_ucs.result
2507share/mysql/test/suite/binlog/r/binlog_row_delete_all_rows.result 2514share/mysql/test/suite/binlog/r/binlog_row_delete_all_rows.result
2508share/mysql/test/suite/binlog/r/binlog_row_drop_tbl.result 2515share/mysql/test/suite/binlog/r/binlog_row_drop_tbl.result
2509share/mysql/test/suite/binlog/r/binlog_row_drop_tmp_tbl.result 2516share/mysql/test/suite/binlog/r/binlog_row_drop_tmp_tbl.result
2510share/mysql/test/suite/binlog/r/binlog_row_insert_select.result 2517share/mysql/test/suite/binlog/r/binlog_row_insert_select.result
2511share/mysql/test/suite/binlog/r/binlog_row_kill_create_select.result 2518share/mysql/test/suite/binlog/r/binlog_row_kill_create_select.result
2512share/mysql/test/suite/binlog/r/binlog_row_mix_innodb_myisam.result 2519share/mysql/test/suite/binlog/r/binlog_row_mix_innodb_myisam.result
2513share/mysql/test/suite/binlog/r/binlog_row_mysqlbinlog_db_filter.result 2520share/mysql/test/suite/binlog/r/binlog_row_mysqlbinlog_db_filter.result
2514share/mysql/test/suite/binlog/r/binlog_row_mysqlbinlog_verbose.result 2521share/mysql/test/suite/binlog/r/binlog_row_mysqlbinlog_verbose.result
2515share/mysql/test/suite/binlog/r/binlog_row_query_log_events.result 2522share/mysql/test/suite/binlog/r/binlog_row_query_log_events.result
2516share/mysql/test/suite/binlog/r/binlog_server_id.result 2523share/mysql/test/suite/binlog/r/binlog_server_id.result
2517share/mysql/test/suite/binlog/r/binlog_server_start_options.result 2524share/mysql/test/suite/binlog/r/binlog_server_start_options.result
2518share/mysql/test/suite/binlog/r/binlog_set_gtid_mode_ongoing_transaction_errors.result 2525share/mysql/test/suite/binlog/r/binlog_set_gtid_mode_ongoing_transaction_errors.result
 2526share/mysql/test/suite/binlog/r/binlog_set_trans_dependency_deadlock.result
2519share/mysql/test/suite/binlog/r/binlog_sf.result 2527share/mysql/test/suite/binlog/r/binlog_sf.result
 2528share/mysql/test/suite/binlog/r/binlog_shutdown_hang.result
2520share/mysql/test/suite/binlog/r/binlog_simulate_crash_and_error_on_compress_gtid_table.result 2529share/mysql/test/suite/binlog/r/binlog_simulate_crash_and_error_on_compress_gtid_table.result
2521share/mysql/test/suite/binlog/r/binlog_spurious_ddl_errors.result 2530share/mysql/test/suite/binlog/r/binlog_spurious_ddl_errors.result
2522share/mysql/test/suite/binlog/r/binlog_sql_mode.result 2531share/mysql/test/suite/binlog/r/binlog_sql_mode.result
2523share/mysql/test/suite/binlog/r/binlog_start_comment.result 2532share/mysql/test/suite/binlog/r/binlog_start_comment.result
2524share/mysql/test/suite/binlog/r/binlog_start_slave_heartbeat.result 2533share/mysql/test/suite/binlog/r/binlog_start_slave_heartbeat.result
2525share/mysql/test/suite/binlog/r/binlog_stm_binlog.result 2534share/mysql/test/suite/binlog/r/binlog_stm_binlog.result
2526share/mysql/test/suite/binlog/r/binlog_stm_blackhole.result 2535share/mysql/test/suite/binlog/r/binlog_stm_blackhole.result
2527share/mysql/test/suite/binlog/r/binlog_stm_cache_stat.result 2536share/mysql/test/suite/binlog/r/binlog_stm_cache_stat.result
2528share/mysql/test/suite/binlog/r/binlog_stm_ctype_cp932.result 2537share/mysql/test/suite/binlog/r/binlog_stm_ctype_cp932.result
2529share/mysql/test/suite/binlog/r/binlog_stm_ctype_ucs.result 2538share/mysql/test/suite/binlog/r/binlog_stm_ctype_ucs.result
2530share/mysql/test/suite/binlog/r/binlog_stm_delete_all_rows.result 2539share/mysql/test/suite/binlog/r/binlog_stm_delete_all_rows.result
2531share/mysql/test/suite/binlog/r/binlog_stm_do_db.result 2540share/mysql/test/suite/binlog/r/binlog_stm_do_db.result
2532share/mysql/test/suite/binlog/r/binlog_stm_drop_tbl.result 2541share/mysql/test/suite/binlog/r/binlog_stm_drop_tbl.result
@@ -2589,26 +2598,28 @@ share/mysql/test/suite/binlog/t/binlog_b @@ -2589,26 +2598,28 @@ share/mysql/test/suite/binlog/t/binlog_b
2589share/mysql/test/suite/binlog/t/binlog_bug23533.test 2598share/mysql/test/suite/binlog/t/binlog_bug23533.test
2590share/mysql/test/suite/binlog/t/binlog_bug36391-master.opt 2599share/mysql/test/suite/binlog/t/binlog_bug36391-master.opt
2591share/mysql/test/suite/binlog/t/binlog_bug36391.test 2600share/mysql/test/suite/binlog/t/binlog_bug36391.test
2592share/mysql/test/suite/binlog/t/binlog_cache_write_failure-master.opt 2601share/mysql/test/suite/binlog/t/binlog_cache_write_failure-master.opt
2593share/mysql/test/suite/binlog/t/binlog_cache_write_failure.test 2602share/mysql/test/suite/binlog/t/binlog_cache_write_failure.test
2594share/mysql/test/suite/binlog/t/binlog_check_flush_log_assertion.test 2603share/mysql/test/suite/binlog/t/binlog_check_flush_log_assertion.test
2595share/mysql/test/suite/binlog/t/binlog_checksum.test 2604share/mysql/test/suite/binlog/t/binlog_checksum.test
2596share/mysql/test/suite/binlog/t/binlog_crash_safe_master_checksum-master.opt 2605share/mysql/test/suite/binlog/t/binlog_crash_safe_master_checksum-master.opt
2597share/mysql/test/suite/binlog/t/binlog_crash_safe_master_checksum.test 2606share/mysql/test/suite/binlog/t/binlog_crash_safe_master_checksum.test
2598share/mysql/test/suite/binlog/t/binlog_database.test 2607share/mysql/test/suite/binlog/t/binlog_database.test
2599share/mysql/test/suite/binlog/t/binlog_delete_and_flush_index.test 2608share/mysql/test/suite/binlog/t/binlog_delete_and_flush_index.test
2600share/mysql/test/suite/binlog/t/binlog_dmls_on_tmp_tables_readonly.test 2609share/mysql/test/suite/binlog/t/binlog_dmls_on_tmp_tables_readonly.test
2601share/mysql/test/suite/binlog/t/binlog_drop_if_exists.test 2610share/mysql/test/suite/binlog/t/binlog_drop_if_exists.test
 2611share/mysql/test/suite/binlog/t/binlog_drop_temp_table_on_disconnect_row_mix.test
 2612share/mysql/test/suite/binlog/t/binlog_drop_temp_table_on_disconnect_stmt.test
2602share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_create_select_consistent.test 2613share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_create_select_consistent.test
2603share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_create_select_violation.test 2614share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_create_select_violation.test
2604share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_multiple_warnings.test 2615share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_multiple_warnings.test
2605share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_option.test 2616share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_option.test
2606share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_tmp_consistent.test 2617share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_tmp_consistent.test
2607share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_tmp_violation.test 2618share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_tmp_violation.test
2608share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_consistent.test 2619share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_consistent.test
2609share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_violation.test 2620share/mysql/test/suite/binlog/t/binlog_enforce_gtid_consistency_trx_nontrx_violation.test
2610share/mysql/test/suite/binlog/t/binlog_error_action-master.opt 2621share/mysql/test/suite/binlog/t/binlog_error_action-master.opt
2611share/mysql/test/suite/binlog/t/binlog_error_action.test 2622share/mysql/test/suite/binlog/t/binlog_error_action.test
2612share/mysql/test/suite/binlog/t/binlog_flush_logs_error.test 2623share/mysql/test/suite/binlog/t/binlog_flush_logs_error.test
2613share/mysql/test/suite/binlog/t/binlog_foreign_key_parent_table_deleted-master.opt 2624share/mysql/test/suite/binlog/t/binlog_foreign_key_parent_table_deleted-master.opt
2614share/mysql/test/suite/binlog/t/binlog_foreign_key_parent_table_deleted.test 2625share/mysql/test/suite/binlog/t/binlog_foreign_key_parent_table_deleted.test
@@ -2644,26 +2655,27 @@ share/mysql/test/suite/binlog/t/binlog_g @@ -2644,26 +2655,27 @@ share/mysql/test/suite/binlog/t/binlog_g
2644share/mysql/test/suite/binlog/t/binlog_gtid_mysqldump.test 2655share/mysql/test/suite/binlog/t/binlog_gtid_mysqldump.test
2645share/mysql/test/suite/binlog/t/binlog_gtid_next_begin_caused_trx.test 2656share/mysql/test/suite/binlog/t/binlog_gtid_next_begin_caused_trx.test
2646share/mysql/test/suite/binlog/t/binlog_gtid_next_partially_failed_grant.test 2657share/mysql/test/suite/binlog/t/binlog_gtid_next_partially_failed_grant.test
2647share/mysql/test/suite/binlog/t/binlog_gtid_next_partially_failed_stmts.test 2658share/mysql/test/suite/binlog/t/binlog_gtid_next_partially_failed_stmts.test
2648share/mysql/test/suite/binlog/t/binlog_gtid_next_single_stmt_trx_rollback.test 2659share/mysql/test/suite/binlog/t/binlog_gtid_next_single_stmt_trx_rollback.test
2649share/mysql/test/suite/binlog/t/binlog_gtid_next_temporary_table.test 2660share/mysql/test/suite/binlog/t/binlog_gtid_next_temporary_table.test
2650share/mysql/test/suite/binlog/t/binlog_gtid_next_xa.test 2661share/mysql/test/suite/binlog/t/binlog_gtid_next_xa.test
2651share/mysql/test/suite/binlog/t/binlog_gtid_rbr_only_flag.test 2662share/mysql/test/suite/binlog/t/binlog_gtid_rbr_only_flag.test
2652share/mysql/test/suite/binlog/t/binlog_gtid_reset_consistency_violation_on_fail.test 2663share/mysql/test/suite/binlog/t/binlog_gtid_reset_consistency_violation_on_fail.test
2653share/mysql/test/suite/binlog/t/binlog_gtid_row_ctype_ucs.test 2664share/mysql/test/suite/binlog/t/binlog_gtid_row_ctype_ucs.test
2654share/mysql/test/suite/binlog/t/binlog_gtid_simple_recovery.test 2665share/mysql/test/suite/binlog/t/binlog_gtid_simple_recovery.test
2655share/mysql/test/suite/binlog/t/binlog_gtid_state_update_deadlock.test 2666share/mysql/test/suite/binlog/t/binlog_gtid_state_update_deadlock.test
2656share/mysql/test/suite/binlog/t/binlog_gtid_stm_ctype_ucs.test 2667share/mysql/test/suite/binlog/t/binlog_gtid_stm_ctype_ucs.test
 2668share/mysql/test/suite/binlog/t/binlog_gtid_unknown_xid.test
2657share/mysql/test/suite/binlog/t/binlog_gtid_utils.test 2669share/mysql/test/suite/binlog/t/binlog_gtid_utils.test
2658share/mysql/test/suite/binlog/t/binlog_gtids_table_gcov.test 2670share/mysql/test/suite/binlog/t/binlog_gtids_table_gcov.test
2659share/mysql/test/suite/binlog/t/binlog_hexdump.test 2671share/mysql/test/suite/binlog/t/binlog_hexdump.test
2660share/mysql/test/suite/binlog/t/binlog_implicit_commit.test 2672share/mysql/test/suite/binlog/t/binlog_implicit_commit.test
2661share/mysql/test/suite/binlog/t/binlog_incident.test 2673share/mysql/test/suite/binlog/t/binlog_incident.test
2662share/mysql/test/suite/binlog/t/binlog_incident_ignore-master.opt 2674share/mysql/test/suite/binlog/t/binlog_incident_ignore-master.opt
2663share/mysql/test/suite/binlog/t/binlog_incident_ignore.test 2675share/mysql/test/suite/binlog/t/binlog_incident_ignore.test
2664share/mysql/test/suite/binlog/t/binlog_index-master.opt 2676share/mysql/test/suite/binlog/t/binlog_index-master.opt
2665share/mysql/test/suite/binlog/t/binlog_index.test 2677share/mysql/test/suite/binlog/t/binlog_index.test
2666share/mysql/test/suite/binlog/t/binlog_innodb-master.opt 2678share/mysql/test/suite/binlog/t/binlog_innodb-master.opt
2667share/mysql/test/suite/binlog/t/binlog_innodb.test 2679share/mysql/test/suite/binlog/t/binlog_innodb.test
2668share/mysql/test/suite/binlog/t/binlog_innodb_row.test 2680share/mysql/test/suite/binlog/t/binlog_innodb_row.test
2669share/mysql/test/suite/binlog/t/binlog_killed.test 2681share/mysql/test/suite/binlog/t/binlog_killed.test
@@ -2684,26 +2696,27 @@ share/mysql/test/suite/binlog/t/binlog_m @@ -2684,26 +2696,27 @@ share/mysql/test/suite/binlog/t/binlog_m
2684share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_intvar.test 2696share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_intvar.test
2685share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_raw.test 2697share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_raw.test
2686share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_rewrite_db.test 2698share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_rewrite_db.test
2687share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row.test 2699share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row.test
2688share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row_innodb.test 2700share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row_innodb.test
2689share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row_myisam.test 2701share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row_myisam.test
2690share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row_trans.test 2702share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_row_trans.test
2691share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_start_stop.test 2703share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_start_stop.test
2692share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_start_stop_slave_server_id.test 2704share/mysql/test/suite/binlog/t/binlog_mysqlbinlog_start_stop_slave_server_id.test
2693share/mysql/test/suite/binlog/t/binlog_nogtid_mix_response_packet.test 2705share/mysql/test/suite/binlog/t/binlog_nogtid_mix_response_packet.test
2694share/mysql/test/suite/binlog/t/binlog_old_versions.test 2706share/mysql/test/suite/binlog/t/binlog_old_versions.test
2695share/mysql/test/suite/binlog/t/binlog_purge_binary_logs_stall-master.opt 2707share/mysql/test/suite/binlog/t/binlog_purge_binary_logs_stall-master.opt
2696share/mysql/test/suite/binlog/t/binlog_purge_binary_logs_stall.test 2708share/mysql/test/suite/binlog/t/binlog_purge_binary_logs_stall.test
 2709share/mysql/test/suite/binlog/t/binlog_purge_binary_logs_to.test
2697share/mysql/test/suite/binlog/t/binlog_query_filter_rules-master.opt 2710share/mysql/test/suite/binlog/t/binlog_query_filter_rules-master.opt
2698share/mysql/test/suite/binlog/t/binlog_query_filter_rules.test 2711share/mysql/test/suite/binlog/t/binlog_query_filter_rules.test
2699share/mysql/test/suite/binlog/t/binlog_rbr_only_savepoint.test 2712share/mysql/test/suite/binlog/t/binlog_rbr_only_savepoint.test
2700share/mysql/test/suite/binlog/t/binlog_reset_connection_not_reset_writeset.test 2713share/mysql/test/suite/binlog/t/binlog_reset_connection_not_reset_writeset.test
2701share/mysql/test/suite/binlog/t/binlog_reset_master.test 2714share/mysql/test/suite/binlog/t/binlog_reset_master.test
2702share/mysql/test/suite/binlog/t/binlog_rewrite.test 2715share/mysql/test/suite/binlog/t/binlog_rewrite.test
2703share/mysql/test/suite/binlog/t/binlog_rewrite_db_noleak.test 2716share/mysql/test/suite/binlog/t/binlog_rewrite_db_noleak.test
2704share/mysql/test/suite/binlog/t/binlog_rewrite_order.test 2717share/mysql/test/suite/binlog/t/binlog_rewrite_order.test
2705share/mysql/test/suite/binlog/t/binlog_rewrite_suppress_use.test 2718share/mysql/test/suite/binlog/t/binlog_rewrite_suppress_use.test
2706share/mysql/test/suite/binlog/t/binlog_rotate_bgc_sync.test 2719share/mysql/test/suite/binlog/t/binlog_rotate_bgc_sync.test
2707share/mysql/test/suite/binlog/t/binlog_row_binlog-master.opt 2720share/mysql/test/suite/binlog/t/binlog_row_binlog-master.opt
2708share/mysql/test/suite/binlog/t/binlog_row_binlog.test 2721share/mysql/test/suite/binlog/t/binlog_row_binlog.test
2709share/mysql/test/suite/binlog/t/binlog_row_cache_stat.test 2722share/mysql/test/suite/binlog/t/binlog_row_cache_stat.test
@@ -2715,27 +2728,29 @@ share/mysql/test/suite/binlog/t/binlog_r @@ -2715,27 +2728,29 @@ share/mysql/test/suite/binlog/t/binlog_r
2715share/mysql/test/suite/binlog/t/binlog_row_drop_tmp_tbl.test 2728share/mysql/test/suite/binlog/t/binlog_row_drop_tmp_tbl.test
2716share/mysql/test/suite/binlog/t/binlog_row_innodb_stat-master.opt 2729share/mysql/test/suite/binlog/t/binlog_row_innodb_stat-master.opt
2717share/mysql/test/suite/binlog/t/binlog_row_insert_select.test 2730share/mysql/test/suite/binlog/t/binlog_row_insert_select.test
2718share/mysql/test/suite/binlog/t/binlog_row_kill_create_select.test 2731share/mysql/test/suite/binlog/t/binlog_row_kill_create_select.test
2719share/mysql/test/suite/binlog/t/binlog_row_mix_innodb_myisam-master.opt 2732share/mysql/test/suite/binlog/t/binlog_row_mix_innodb_myisam-master.opt
2720share/mysql/test/suite/binlog/t/binlog_row_mix_innodb_myisam.test 2733share/mysql/test/suite/binlog/t/binlog_row_mix_innodb_myisam.test
2721share/mysql/test/suite/binlog/t/binlog_row_mysqlbinlog_db_filter.test 2734share/mysql/test/suite/binlog/t/binlog_row_mysqlbinlog_db_filter.test
2722share/mysql/test/suite/binlog/t/binlog_row_mysqlbinlog_verbose.test 2735share/mysql/test/suite/binlog/t/binlog_row_mysqlbinlog_verbose.test
2723share/mysql/test/suite/binlog/t/binlog_row_query_log_events.test 2736share/mysql/test/suite/binlog/t/binlog_row_query_log_events.test
2724share/mysql/test/suite/binlog/t/binlog_server_id.test 2737share/mysql/test/suite/binlog/t/binlog_server_id.test
2725share/mysql/test/suite/binlog/t/binlog_server_start_options-master.opt 2738share/mysql/test/suite/binlog/t/binlog_server_start_options-master.opt
2726share/mysql/test/suite/binlog/t/binlog_server_start_options.test 2739share/mysql/test/suite/binlog/t/binlog_server_start_options.test
2727share/mysql/test/suite/binlog/t/binlog_set_gtid_mode_ongoing_transaction_errors.test 2740share/mysql/test/suite/binlog/t/binlog_set_gtid_mode_ongoing_transaction_errors.test
 2741share/mysql/test/suite/binlog/t/binlog_set_trans_dependency_deadlock.test
2728share/mysql/test/suite/binlog/t/binlog_sf.test 2742share/mysql/test/suite/binlog/t/binlog_sf.test
 2743share/mysql/test/suite/binlog/t/binlog_shutdown_hang.test
2729share/mysql/test/suite/binlog/t/binlog_simulate_crash_and_error_on_compress_gtid_table.test 2744share/mysql/test/suite/binlog/t/binlog_simulate_crash_and_error_on_compress_gtid_table.test
2730share/mysql/test/suite/binlog/t/binlog_spurious_ddl_errors-master.opt 2745share/mysql/test/suite/binlog/t/binlog_spurious_ddl_errors-master.opt
2731share/mysql/test/suite/binlog/t/binlog_spurious_ddl_errors.test 2746share/mysql/test/suite/binlog/t/binlog_spurious_ddl_errors.test
2732share/mysql/test/suite/binlog/t/binlog_sql_mode.test 2747share/mysql/test/suite/binlog/t/binlog_sql_mode.test
2733share/mysql/test/suite/binlog/t/binlog_start_comment.test 2748share/mysql/test/suite/binlog/t/binlog_start_comment.test
2734share/mysql/test/suite/binlog/t/binlog_start_slave_heartbeat-slave.opt 2749share/mysql/test/suite/binlog/t/binlog_start_slave_heartbeat-slave.opt
2735share/mysql/test/suite/binlog/t/binlog_start_slave_heartbeat.test 2750share/mysql/test/suite/binlog/t/binlog_start_slave_heartbeat.test
2736share/mysql/test/suite/binlog/t/binlog_stm_binlog-master.opt 2751share/mysql/test/suite/binlog/t/binlog_stm_binlog-master.opt
2737share/mysql/test/suite/binlog/t/binlog_stm_binlog.test 2752share/mysql/test/suite/binlog/t/binlog_stm_binlog.test
2738share/mysql/test/suite/binlog/t/binlog_stm_blackhole.test 2753share/mysql/test/suite/binlog/t/binlog_stm_blackhole.test
2739share/mysql/test/suite/binlog/t/binlog_stm_cache_stat.test 2754share/mysql/test/suite/binlog/t/binlog_stm_cache_stat.test
2740share/mysql/test/suite/binlog/t/binlog_stm_ctype_cp932.test 2755share/mysql/test/suite/binlog/t/binlog_stm_ctype_cp932.test
2741share/mysql/test/suite/binlog/t/binlog_stm_ctype_ucs.test 2756share/mysql/test/suite/binlog/t/binlog_stm_ctype_ucs.test
@@ -4188,26 +4203,27 @@ share/mysql/test/suite/group_replication @@ -4188,26 +4203,27 @@ share/mysql/test/suite/group_replication
4188share/mysql/test/suite/group_replication/inc/have_group_replication_gtid_assignment_block_size_1.inc 4203share/mysql/test/suite/group_replication/inc/have_group_replication_gtid_assignment_block_size_1.inc
4189share/mysql/test/suite/group_replication/inc/have_group_replication_plugin.inc 4204share/mysql/test/suite/group_replication/inc/have_group_replication_plugin.inc
4190share/mysql/test/suite/group_replication/inc/have_group_replication_plugin_base.inc 4205share/mysql/test/suite/group_replication/inc/have_group_replication_plugin_base.inc
4191share/mysql/test/suite/group_replication/inc/kill_and_restart_mysqld.inc 4206share/mysql/test/suite/group_replication/inc/kill_and_restart_mysqld.inc
4192share/mysql/test/suite/group_replication/inc/start_and_bootstrap_group_replication.inc 4207share/mysql/test/suite/group_replication/inc/start_and_bootstrap_group_replication.inc
4193share/mysql/test/suite/group_replication/inc/uninstall_group_replication_plugin.inc 4208share/mysql/test/suite/group_replication/inc/uninstall_group_replication_plugin.inc
4194share/mysql/test/suite/group_replication/my.cnf 4209share/mysql/test/suite/group_replication/my.cnf
4195share/mysql/test/suite/group_replication/r/gr_DML_error.result 4210share/mysql/test/suite/group_replication/r/gr_DML_error.result
4196share/mysql/test/suite/group_replication/r/gr_abort_query_on_plugin_error.result 4211share/mysql/test/suite/group_replication/r/gr_abort_query_on_plugin_error.result
4197share/mysql/test/suite/group_replication/r/gr_abort_query_on_plugin_recovery.result 4212share/mysql/test/suite/group_replication/r/gr_abort_query_on_plugin_recovery.result
4198share/mysql/test/suite/group_replication/r/gr_addmember_during_dml.result 4213share/mysql/test/suite/group_replication/r/gr_addmember_during_dml.result
4199share/mysql/test/suite/group_replication/r/gr_addmember_insert_on_donor.result 4214share/mysql/test/suite/group_replication/r/gr_addmember_insert_on_donor.result
4200share/mysql/test/suite/group_replication/r/gr_addmember_insert_on_nondonor.result 4215share/mysql/test/suite/group_replication/r/gr_addmember_insert_on_nondonor.result
 4216share/mysql/test/suite/group_replication/r/gr_applier_channel_stop_with_pending_transactions.result
4201share/mysql/test/suite/group_replication/r/gr_applier_early_failure.result 4217share/mysql/test/suite/group_replication/r/gr_applier_early_failure.result
4202share/mysql/test/suite/group_replication/r/gr_applier_error.result 4218share/mysql/test/suite/group_replication/r/gr_applier_error.result
4203share/mysql/test/suite/group_replication/r/gr_applier_initialization.result 4219share/mysql/test/suite/group_replication/r/gr_applier_initialization.result
4204share/mysql/test/suite/group_replication/r/gr_applier_received_set.result 4220share/mysql/test/suite/group_replication/r/gr_applier_received_set.result
4205share/mysql/test/suite/group_replication/r/gr_applier_slave_commands.result 4221share/mysql/test/suite/group_replication/r/gr_applier_slave_commands.result
4206share/mysql/test/suite/group_replication/r/gr_applier_thread_error_detection.result 4222share/mysql/test/suite/group_replication/r/gr_applier_thread_error_detection.result
4207share/mysql/test/suite/group_replication/r/gr_applier_thread_failure_detection.result 4223share/mysql/test/suite/group_replication/r/gr_applier_thread_failure_detection.result
4208share/mysql/test/suite/group_replication/r/gr_auto_increment_increment.result 4224share/mysql/test/suite/group_replication/r/gr_auto_increment_increment.result
4209share/mysql/test/suite/group_replication/r/gr_auto_increment_start_stop_parallel.result 4225share/mysql/test/suite/group_replication/r/gr_auto_increment_start_stop_parallel.result
4210share/mysql/test/suite/group_replication/r/gr_autoincrement_parallel_insert.result 4226share/mysql/test/suite/group_replication/r/gr_autoincrement_parallel_insert.result
4211share/mysql/test/suite/group_replication/r/gr_autostart_on_install.result 4227share/mysql/test/suite/group_replication/r/gr_autostart_on_install.result
4212share/mysql/test/suite/group_replication/r/gr_basic_crud_on_doc.result 4228share/mysql/test/suite/group_replication/r/gr_basic_crud_on_doc.result
4213share/mysql/test/suite/group_replication/r/gr_binlog_checksum_failure.result 4229share/mysql/test/suite/group_replication/r/gr_binlog_checksum_failure.result
@@ -4528,26 +4544,27 @@ share/mysql/test/suite/group_replication @@ -4528,26 +4544,27 @@ share/mysql/test/suite/group_replication
4528share/mysql/test/suite/group_replication/r/group_replication.result 4544share/mysql/test/suite/group_replication/r/group_replication.result
4529share/mysql/test/suite/group_replication/rpl_1slave_base.cnf 4545share/mysql/test/suite/group_replication/rpl_1slave_base.cnf
4530share/mysql/test/suite/group_replication/t/disabled.def 4546share/mysql/test/suite/group_replication/t/disabled.def
4531share/mysql/test/suite/group_replication/t/gr_000400_000500_incompatible-master.opt 4547share/mysql/test/suite/group_replication/t/gr_000400_000500_incompatible-master.opt
4532share/mysql/test/suite/group_replication/t/gr_DML_error.test 4548share/mysql/test/suite/group_replication/t/gr_DML_error.test
4533share/mysql/test/suite/group_replication/t/gr_abort_query_on_plugin_error.test 4549share/mysql/test/suite/group_replication/t/gr_abort_query_on_plugin_error.test
4534share/mysql/test/suite/group_replication/t/gr_abort_query_on_plugin_recovery.test 4550share/mysql/test/suite/group_replication/t/gr_abort_query_on_plugin_recovery.test
4535share/mysql/test/suite/group_replication/t/gr_addmember_during_dml.cnf 4551share/mysql/test/suite/group_replication/t/gr_addmember_during_dml.cnf
4536share/mysql/test/suite/group_replication/t/gr_addmember_during_dml.test 4552share/mysql/test/suite/group_replication/t/gr_addmember_during_dml.test
4537share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_donor.cnf 4553share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_donor.cnf
4538share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_donor.test 4554share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_donor.test
4539share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_nondonor.cnf 4555share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_nondonor.cnf
4540share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_nondonor.test 4556share/mysql/test/suite/group_replication/t/gr_addmember_insert_on_nondonor.test
 4557share/mysql/test/suite/group_replication/t/gr_applier_channel_stop_with_pending_transactions.test
4541share/mysql/test/suite/group_replication/t/gr_applier_early_failure.test 4558share/mysql/test/suite/group_replication/t/gr_applier_early_failure.test
4542share/mysql/test/suite/group_replication/t/gr_applier_error-slave.opt 4559share/mysql/test/suite/group_replication/t/gr_applier_error-slave.opt
4543share/mysql/test/suite/group_replication/t/gr_applier_error.test 4560share/mysql/test/suite/group_replication/t/gr_applier_error.test
4544share/mysql/test/suite/group_replication/t/gr_applier_initialization.test 4561share/mysql/test/suite/group_replication/t/gr_applier_initialization.test
4545share/mysql/test/suite/group_replication/t/gr_applier_received_set.test 4562share/mysql/test/suite/group_replication/t/gr_applier_received_set.test
4546share/mysql/test/suite/group_replication/t/gr_applier_slave_commands.test 4563share/mysql/test/suite/group_replication/t/gr_applier_slave_commands.test
4547share/mysql/test/suite/group_replication/t/gr_applier_thread_error_detection.test 4564share/mysql/test/suite/group_replication/t/gr_applier_thread_error_detection.test
4548share/mysql/test/suite/group_replication/t/gr_applier_thread_failure_detection.test 4565share/mysql/test/suite/group_replication/t/gr_applier_thread_failure_detection.test
4549share/mysql/test/suite/group_replication/t/gr_auto_increment_increment-slave.opt 4566share/mysql/test/suite/group_replication/t/gr_auto_increment_increment-slave.opt
4550share/mysql/test/suite/group_replication/t/gr_auto_increment_increment.cnf 4567share/mysql/test/suite/group_replication/t/gr_auto_increment_increment.cnf
4551share/mysql/test/suite/group_replication/t/gr_auto_increment_increment.test 4568share/mysql/test/suite/group_replication/t/gr_auto_increment_increment.test
4552share/mysql/test/suite/group_replication/t/gr_auto_increment_start_stop_parallel.cnf 4569share/mysql/test/suite/group_replication/t/gr_auto_increment_start_stop_parallel.cnf
4553share/mysql/test/suite/group_replication/t/gr_auto_increment_start_stop_parallel.test 4570share/mysql/test/suite/group_replication/t/gr_auto_increment_start_stop_parallel.test
@@ -4935,27 +4952,26 @@ share/mysql/test/suite/group_replication @@ -4935,27 +4952,26 @@ share/mysql/test/suite/group_replication
4935share/mysql/test/suite/group_replication/t/gr_single_primary_verify_next_leader.test 4952share/mysql/test/suite/group_replication/t/gr_single_primary_verify_next_leader.test
4936share/mysql/test/suite/group_replication/t/gr_single_primary_with_foreign_key_cascade.test 4953share/mysql/test/suite/group_replication/t/gr_single_primary_with_foreign_key_cascade.test
4937share/mysql/test/suite/group_replication/t/gr_single_primary_with_transaction_isolation.test 4954share/mysql/test/suite/group_replication/t/gr_single_primary_with_transaction_isolation.test
4938share/mysql/test/suite/group_replication/t/gr_skip_gtid_multiple_servers.test 4955share/mysql/test/suite/group_replication/t/gr_skip_gtid_multiple_servers.test
4939share/mysql/test/suite/group_replication/t/gr_skip_gtid_remote_server.test 4956share/mysql/test/suite/group_replication/t/gr_skip_gtid_remote_server.test
4940share/mysql/test/suite/group_replication/t/gr_skip_gtid_single_gtid.test 4957share/mysql/test/suite/group_replication/t/gr_skip_gtid_single_gtid.test
4941share/mysql/test/suite/group_replication/t/gr_skip_gtid_view_change_event.test 4958share/mysql/test/suite/group_replication/t/gr_skip_gtid_view_change_event.test
4942share/mysql/test/suite/group_replication/t/gr_skip_gtid_view_change_full_shutdown.test 4959share/mysql/test/suite/group_replication/t/gr_skip_gtid_view_change_full_shutdown.test
4943share/mysql/test/suite/group_replication/t/gr_skip_performance_schema_dml.test 4960share/mysql/test/suite/group_replication/t/gr_skip_performance_schema_dml.test
4944share/mysql/test/suite/group_replication/t/gr_skip_send_lower_case_table_names.test 4961share/mysql/test/suite/group_replication/t/gr_skip_send_lower_case_table_names.test
4945share/mysql/test/suite/group_replication/t/gr_skip_view_change_event.cnf 4962share/mysql/test/suite/group_replication/t/gr_skip_view_change_event.cnf
4946share/mysql/test/suite/group_replication/t/gr_skip_view_change_event.test 4963share/mysql/test/suite/group_replication/t/gr_skip_view_change_event.test
4947share/mysql/test/suite/group_replication/t/gr_skip_wait_for_view_modification.test 4964share/mysql/test/suite/group_replication/t/gr_skip_wait_for_view_modification.test
4948share/mysql/test/suite/group_replication/t/gr_slave_max_allowed_packet_dependency.cnf 
4949share/mysql/test/suite/group_replication/t/gr_slave_max_allowed_packet_dependency.test 4965share/mysql/test/suite/group_replication/t/gr_slave_max_allowed_packet_dependency.test
4950share/mysql/test/suite/group_replication/t/gr_slow_member_garbage_collection.test 4966share/mysql/test/suite/group_replication/t/gr_slow_member_garbage_collection.test
4951share/mysql/test/suite/group_replication/t/gr_sql_service_failure.test 4967share/mysql/test/suite/group_replication/t/gr_sql_service_failure.test
4952share/mysql/test/suite/group_replication/t/gr_ssl.test 4968share/mysql/test/suite/group_replication/t/gr_ssl.test
4953share/mysql/test/suite/group_replication/t/gr_ssl_mode-master.opt 4969share/mysql/test/suite/group_replication/t/gr_ssl_mode-master.opt
4954share/mysql/test/suite/group_replication/t/gr_ssl_mode-slave.opt 4970share/mysql/test/suite/group_replication/t/gr_ssl_mode-slave.opt
4955share/mysql/test/suite/group_replication/t/gr_ssl_mode.test 4971share/mysql/test/suite/group_replication/t/gr_ssl_mode.test
4956share/mysql/test/suite/group_replication/t/gr_ssl_mode_basic.test 4972share/mysql/test/suite/group_replication/t/gr_ssl_mode_basic.test
4957share/mysql/test/suite/group_replication/t/gr_ssl_mode_verify_identity_error-master.opt 4973share/mysql/test/suite/group_replication/t/gr_ssl_mode_verify_identity_error-master.opt
4958share/mysql/test/suite/group_replication/t/gr_ssl_mode_verify_identity_error-slave.opt 4974share/mysql/test/suite/group_replication/t/gr_ssl_mode_verify_identity_error-slave.opt
4959share/mysql/test/suite/group_replication/t/gr_ssl_mode_verify_identity_error.test 4975share/mysql/test/suite/group_replication/t/gr_ssl_mode_verify_identity_error.test
4960share/mysql/test/suite/group_replication/t/gr_ssl_options-master.opt 4976share/mysql/test/suite/group_replication/t/gr_ssl_options-master.opt
4961share/mysql/test/suite/group_replication/t/gr_ssl_options.test 4977share/mysql/test/suite/group_replication/t/gr_ssl_options.test
@@ -9633,47 +9649,47 @@ share/mysql/test/suite/rpl/r/rpl_explici @@ -9633,47 +9649,47 @@ share/mysql/test/suite/rpl/r/rpl_explici
9633share/mysql/test/suite/rpl/r/rpl_extra_col_master_innodb.result 9649share/mysql/test/suite/rpl/r/rpl_extra_col_master_innodb.result
9634share/mysql/test/suite/rpl/r/rpl_extra_col_master_myisam.result 9650share/mysql/test/suite/rpl/r/rpl_extra_col_master_myisam.result
9635share/mysql/test/suite/rpl/r/rpl_extra_col_slave_innodb.result 9651share/mysql/test/suite/rpl/r/rpl_extra_col_slave_innodb.result
9636share/mysql/test/suite/rpl/r/rpl_extra_col_slave_myisam.result 9652share/mysql/test/suite/rpl/r/rpl_extra_col_slave_myisam.result
9637share/mysql/test/suite/rpl/r/rpl_extra_row_data.result 9653share/mysql/test/suite/rpl/r/rpl_extra_row_data.result
9638share/mysql/test/suite/rpl/r/rpl_failed_optimize.result 9654share/mysql/test/suite/rpl/r/rpl_failed_optimize.result
9639share/mysql/test/suite/rpl/r/rpl_filter_database.result 9655share/mysql/test/suite/rpl/r/rpl_filter_database.result
9640share/mysql/test/suite/rpl/r/rpl_filter_dbs_dynamic.result 9656share/mysql/test/suite/rpl/r/rpl_filter_dbs_dynamic.result
9641share/mysql/test/suite/rpl/r/rpl_filter_rewrite_db_dynamic.result 9657share/mysql/test/suite/rpl/r/rpl_filter_rewrite_db_dynamic.result
9642share/mysql/test/suite/rpl/r/rpl_filter_tables_dynamic.result 9658share/mysql/test/suite/rpl/r/rpl_filter_tables_dynamic.result
9643share/mysql/test/suite/rpl/r/rpl_filter_tables_not_exist.result 9659share/mysql/test/suite/rpl/r/rpl_filter_tables_not_exist.result
9644share/mysql/test/suite/rpl/r/rpl_filter_warnings.result 9660share/mysql/test/suite/rpl/r/rpl_filter_warnings.result
9645share/mysql/test/suite/rpl/r/rpl_filter_wild_tables_dynamic.result 9661share/mysql/test/suite/rpl/r/rpl_filter_wild_tables_dynamic.result
 9662share/mysql/test/suite/rpl/r/rpl_flush_log_after_sync_stage.result
9646share/mysql/test/suite/rpl/r/rpl_flush_logs.result 9663share/mysql/test/suite/rpl/r/rpl_flush_logs.result
9647share/mysql/test/suite/rpl/r/rpl_flushlog_loop.result 9664share/mysql/test/suite/rpl/r/rpl_flushlog_loop.result
9648share/mysql/test/suite/rpl/r/rpl_foreign_key_innodb.result 9665share/mysql/test/suite/rpl/r/rpl_foreign_key_innodb.result
9649share/mysql/test/suite/rpl/r/rpl_free_items.result 9666share/mysql/test/suite/rpl/r/rpl_free_items.result
9650share/mysql/test/suite/rpl/r/rpl_function_defaults.result 9667share/mysql/test/suite/rpl/r/rpl_function_defaults.result
9651share/mysql/test/suite/rpl/r/rpl_general_log.result 9668share/mysql/test/suite/rpl/r/rpl_general_log.result
9652share/mysql/test/suite/rpl/r/rpl_geometry.result 9669share/mysql/test/suite/rpl/r/rpl_geometry.result
9653share/mysql/test/suite/rpl/r/rpl_get_lock.result 9670share/mysql/test/suite/rpl/r/rpl_get_lock.result
9654share/mysql/test/suite/rpl/r/rpl_get_master_version_and_clock.result 9671share/mysql/test/suite/rpl/r/rpl_get_master_version_and_clock.result
9655share/mysql/test/suite/rpl/r/rpl_gis_geometry.result 9672share/mysql/test/suite/rpl/r/rpl_gis_geometry.result
9656share/mysql/test/suite/rpl/r/rpl_grant.result 9673share/mysql/test/suite/rpl/r/rpl_grant.result
9657share/mysql/test/suite/rpl/r/rpl_grant_plugin.result 9674share/mysql/test/suite/rpl/r/rpl_grant_plugin.result
9658share/mysql/test/suite/rpl/r/rpl_group_commit_deadlock.result 9675share/mysql/test/suite/rpl/r/rpl_group_commit_deadlock.result
9659share/mysql/test/suite/rpl/r/rpl_group_commit_update_commit_group.result 9676share/mysql/test/suite/rpl/r/rpl_group_commit_update_commit_group.result
9660share/mysql/test/suite/rpl/r/rpl_group_replication_commands.result 9677share/mysql/test/suite/rpl/r/rpl_group_replication_commands.result
9661share/mysql/test/suite/rpl/r/rpl_group_replication_start_stop_gr_error.result 9678share/mysql/test/suite/rpl/r/rpl_group_replication_start_stop_gr_error.result
9662share/mysql/test/suite/rpl/r/rpl_gtid_binary_log_as_relay_log.result 9679share/mysql/test/suite/rpl/r/rpl_gtid_binary_log_as_relay_log.result
9663share/mysql/test/suite/rpl/r/rpl_gtid_compress_thd_ignore_super_read_only.result 9680share/mysql/test/suite/rpl/r/rpl_gtid_compress_thd_ignore_super_read_only.result
9664share/mysql/test/suite/rpl/r/rpl_gtid_create_select.result 9681share/mysql/test/suite/rpl/r/rpl_gtid_create_select.result
9665share/mysql/test/suite/rpl/r/rpl_gtid_delete_memory_table_after_start_server.result 9682share/mysql/test/suite/rpl/r/rpl_gtid_delete_memory_table_after_start_server.result
9666share/mysql/test/suite/rpl/r/rpl_gtid_disconnect_drop_temporary_table.result 
9667share/mysql/test/suite/rpl/r/rpl_gtid_do_table_filter_insensitive.result 9683share/mysql/test/suite/rpl/r/rpl_gtid_do_table_filter_insensitive.result
9668share/mysql/test/suite/rpl/r/rpl_gtid_do_table_filter_sensitive.result 9684share/mysql/test/suite/rpl/r/rpl_gtid_do_table_filter_sensitive.result
9669share/mysql/test/suite/rpl/r/rpl_gtid_drop_table.result 9685share/mysql/test/suite/rpl/r/rpl_gtid_drop_table.result
9670share/mysql/test/suite/rpl/r/rpl_gtid_dump_error.result 9686share/mysql/test/suite/rpl/r/rpl_gtid_dump_error.result
9671share/mysql/test/suite/rpl/r/rpl_gtid_empty_transaction.result 9687share/mysql/test/suite/rpl/r/rpl_gtid_empty_transaction.result
9672share/mysql/test/suite/rpl/r/rpl_gtid_events.result 9688share/mysql/test/suite/rpl/r/rpl_gtid_events.result
9673share/mysql/test/suite/rpl/r/rpl_gtid_execution.result 9689share/mysql/test/suite/rpl/r/rpl_gtid_execution.result
9674share/mysql/test/suite/rpl/r/rpl_gtid_failover.result 9690share/mysql/test/suite/rpl/r/rpl_gtid_failover.result
9675share/mysql/test/suite/rpl/r/rpl_gtid_heartbeat_2slave.result 9691share/mysql/test/suite/rpl/r/rpl_gtid_heartbeat_2slave.result
9676share/mysql/test/suite/rpl/r/rpl_gtid_huge_gtid_set.result 9692share/mysql/test/suite/rpl/r/rpl_gtid_huge_gtid_set.result
9677share/mysql/test/suite/rpl/r/rpl_gtid_ignore_table_filter_insensitive.result 9693share/mysql/test/suite/rpl/r/rpl_gtid_ignore_table_filter_insensitive.result
9678share/mysql/test/suite/rpl/r/rpl_gtid_ignore_table_filter_sensitive.result 9694share/mysql/test/suite/rpl/r/rpl_gtid_ignore_table_filter_sensitive.result
9679share/mysql/test/suite/rpl/r/rpl_gtid_loaddata_s.result 9695share/mysql/test/suite/rpl/r/rpl_gtid_loaddata_s.result
@@ -9882,26 +9898,27 @@ share/mysql/test/suite/rpl/r/rpl_perfsch @@ -9882,26 +9898,27 @@ share/mysql/test/suite/rpl/r/rpl_perfsch
9882share/mysql/test/suite/rpl/r/rpl_perfschema_connect_status.result 9898share/mysql/test/suite/rpl/r/rpl_perfschema_connect_status.result
9883share/mysql/test/suite/rpl/r/rpl_perfschema_no_master_uuid.result 9899share/mysql/test/suite/rpl/r/rpl_perfschema_no_master_uuid.result
9884share/mysql/test/suite/rpl/r/rpl_perfschema_order_by.result 9900share/mysql/test/suite/rpl/r/rpl_perfschema_order_by.result
9885share/mysql/test/suite/rpl/r/rpl_perfschema_threads_processlist_status.result 9901share/mysql/test/suite/rpl/r/rpl_perfschema_threads_processlist_status.result
9886share/mysql/test/suite/rpl/r/rpl_plugin_load.result 9902share/mysql/test/suite/rpl/r/rpl_plugin_load.result
9887share/mysql/test/suite/rpl/r/rpl_ps.result 9903share/mysql/test/suite/rpl/r/rpl_ps.result
9888share/mysql/test/suite/rpl/r/rpl_pump.result 9904share/mysql/test/suite/rpl/r/rpl_pump.result
9889share/mysql/test/suite/rpl/r/rpl_rbr_to_sbr.result 9905share/mysql/test/suite/rpl/r/rpl_rbr_to_sbr.result
9890share/mysql/test/suite/rpl/r/rpl_read_old_relay_log_info.result 9906share/mysql/test/suite/rpl/r/rpl_read_old_relay_log_info.result
9891share/mysql/test/suite/rpl/r/rpl_read_only.result 9907share/mysql/test/suite/rpl/r/rpl_read_only.result
9892share/mysql/test/suite/rpl/r/rpl_recovery_empty_sqlthd_pos.result 9908share/mysql/test/suite/rpl/r/rpl_recovery_empty_sqlthd_pos.result
9893share/mysql/test/suite/rpl/r/rpl_recovery_replicate_same_server_id.result 9909share/mysql/test/suite/rpl/r/rpl_recovery_replicate_same_server_id.result
9894share/mysql/test/suite/rpl/r/rpl_relay_log_recovery_positions.result 9910share/mysql/test/suite/rpl/r/rpl_relay_log_recovery_positions.result
 9911share/mysql/test/suite/rpl/r/rpl_relay_log_space_synchronization.result
9895share/mysql/test/suite/rpl/r/rpl_relay_space_innodb.result 9912share/mysql/test/suite/rpl/r/rpl_relay_space_innodb.result
9896share/mysql/test/suite/rpl/r/rpl_relay_space_myisam.result 9913share/mysql/test/suite/rpl/r/rpl_relay_space_myisam.result
9897share/mysql/test/suite/rpl/r/rpl_relayrotate.result 9914share/mysql/test/suite/rpl/r/rpl_relayrotate.result
9898share/mysql/test/suite/rpl/r/rpl_relayspace.result 9915share/mysql/test/suite/rpl/r/rpl_relayspace.result
9899share/mysql/test/suite/rpl/r/rpl_replicate_do.result 9916share/mysql/test/suite/rpl/r/rpl_replicate_do.result
9900share/mysql/test/suite/rpl/r/rpl_replicate_event_after_sync_stage.result 9917share/mysql/test/suite/rpl/r/rpl_replicate_event_after_sync_stage.result
9901share/mysql/test/suite/rpl/r/rpl_replicate_ignore_db.result 9918share/mysql/test/suite/rpl/r/rpl_replicate_ignore_db.result
9902share/mysql/test/suite/rpl/r/rpl_replicate_rewrite_db.result 9919share/mysql/test/suite/rpl/r/rpl_replicate_rewrite_db.result
9903share/mysql/test/suite/rpl/r/rpl_replicate_same_server_id.result 9920share/mysql/test/suite/rpl/r/rpl_replicate_same_server_id.result
9904share/mysql/test/suite/rpl/r/rpl_replication_observers_example_before_dml.result 9921share/mysql/test/suite/rpl/r/rpl_replication_observers_example_before_dml.result
9905share/mysql/test/suite/rpl/r/rpl_replication_observers_example_is_stopping.result 9922share/mysql/test/suite/rpl/r/rpl_replication_observers_example_is_stopping.result
9906share/mysql/test/suite/rpl/r/rpl_replication_observers_example_plugin.result 9923share/mysql/test/suite/rpl/r/rpl_replication_observers_example_plugin.result
9907share/mysql/test/suite/rpl/r/rpl_replication_observers_example_plugin_channels.result 9924share/mysql/test/suite/rpl/r/rpl_replication_observers_example_plugin_channels.result
@@ -9942,26 +9959,27 @@ share/mysql/test/suite/rpl/r/rpl_row_cor @@ -9942,26 +9959,27 @@ share/mysql/test/suite/rpl/r/rpl_row_cor
9942share/mysql/test/suite/rpl/r/rpl_row_corruption.result 9959share/mysql/test/suite/rpl/r/rpl_row_corruption.result
9943share/mysql/test/suite/rpl/r/rpl_row_crash_safe.result 9960share/mysql/test/suite/rpl/r/rpl_row_crash_safe.result
9944share/mysql/test/suite/rpl/r/rpl_row_create_select.result 9961share/mysql/test/suite/rpl/r/rpl_row_create_select.result
9945share/mysql/test/suite/rpl/r/rpl_row_create_table.result 9962share/mysql/test/suite/rpl/r/rpl_row_create_table.result
9946share/mysql/test/suite/rpl/r/rpl_row_drop.result 9963share/mysql/test/suite/rpl/r/rpl_row_drop.result
9947share/mysql/test/suite/rpl/r/rpl_row_drop_create_temp_table.result 9964share/mysql/test/suite/rpl/r/rpl_row_drop_create_temp_table.result
9948share/mysql/test/suite/rpl/r/rpl_row_err_ignoredtable.result 9965share/mysql/test/suite/rpl/r/rpl_row_err_ignoredtable.result
9949share/mysql/test/suite/rpl/r/rpl_row_event_max_size.result 9966share/mysql/test/suite/rpl/r/rpl_row_event_max_size.result
9950share/mysql/test/suite/rpl/r/rpl_row_find_row.result 9967share/mysql/test/suite/rpl/r/rpl_row_find_row.result
9951share/mysql/test/suite/rpl/r/rpl_row_flsh_tbls.result 9968share/mysql/test/suite/rpl/r/rpl_row_flsh_tbls.result
9952share/mysql/test/suite/rpl/r/rpl_row_func001.result 9969share/mysql/test/suite/rpl/r/rpl_row_func001.result
9953share/mysql/test/suite/rpl/r/rpl_row_func002.result 9970share/mysql/test/suite/rpl/r/rpl_row_func002.result
9954share/mysql/test/suite/rpl/r/rpl_row_func003.result 9971share/mysql/test/suite/rpl/r/rpl_row_func003.result
 9972share/mysql/test/suite/rpl/r/rpl_row_gtid_disconnect_drop_temporary_table.result
9955share/mysql/test/suite/rpl/r/rpl_row_hash_scan.result 9973share/mysql/test/suite/rpl/r/rpl_row_hash_scan.result
9956share/mysql/test/suite/rpl/r/rpl_row_hash_scan_sanity.result 9974share/mysql/test/suite/rpl/r/rpl_row_hash_scan_sanity.result
9957share/mysql/test/suite/rpl/r/rpl_row_idempotency.result 9975share/mysql/test/suite/rpl/r/rpl_row_idempotency.result
9958share/mysql/test/suite/rpl/r/rpl_row_ignorable_event.result 9976share/mysql/test/suite/rpl/r/rpl_row_ignorable_event.result
9959share/mysql/test/suite/rpl/r/rpl_row_img_blobs.result 9977share/mysql/test/suite/rpl/r/rpl_row_img_blobs.result
9960share/mysql/test/suite/rpl/r/rpl_row_img_eng_full.result 9978share/mysql/test/suite/rpl/r/rpl_row_img_eng_full.result
9961share/mysql/test/suite/rpl/r/rpl_row_img_eng_min.result 9979share/mysql/test/suite/rpl/r/rpl_row_img_eng_min.result
9962share/mysql/test/suite/rpl/r/rpl_row_img_eng_noblob.result 9980share/mysql/test/suite/rpl/r/rpl_row_img_eng_noblob.result
9963share/mysql/test/suite/rpl/r/rpl_row_img_idx_full.result 9981share/mysql/test/suite/rpl/r/rpl_row_img_idx_full.result
9964share/mysql/test/suite/rpl/r/rpl_row_img_idx_min.result 9982share/mysql/test/suite/rpl/r/rpl_row_img_idx_min.result
9965share/mysql/test/suite/rpl/r/rpl_row_img_idx_noblob.result 9983share/mysql/test/suite/rpl/r/rpl_row_img_idx_noblob.result
9966share/mysql/test/suite/rpl/r/rpl_row_img_misc.result 9984share/mysql/test/suite/rpl/r/rpl_row_img_misc.result
9967share/mysql/test/suite/rpl/r/rpl_row_img_sanity.result 9985share/mysql/test/suite/rpl/r/rpl_row_img_sanity.result
@@ -10083,26 +10101,27 @@ share/mysql/test/suite/rpl/r/rpl_stm_aut @@ -10083,26 +10101,27 @@ share/mysql/test/suite/rpl/r/rpl_stm_aut
10083share/mysql/test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result 10101share/mysql/test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result
10084share/mysql/test/suite/rpl/r/rpl_stm_conflicts.result 10102share/mysql/test/suite/rpl/r/rpl_stm_conflicts.result
10085share/mysql/test/suite/rpl/r/rpl_stm_drop_create_temp_table.result 10103share/mysql/test/suite/rpl/r/rpl_stm_drop_create_temp_table.result
10086share/mysql/test/suite/rpl/r/rpl_stm_flsh_tbls.result 10104share/mysql/test/suite/rpl/r/rpl_stm_flsh_tbls.result
10087share/mysql/test/suite/rpl/r/rpl_stm_found_rows.result 10105share/mysql/test/suite/rpl/r/rpl_stm_found_rows.result
10088share/mysql/test/suite/rpl/r/rpl_stm_ignore.result 10106share/mysql/test/suite/rpl/r/rpl_stm_ignore.result
10089share/mysql/test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result 10107share/mysql/test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result
10090share/mysql/test/suite/rpl/r/rpl_stm_innodb.result 10108share/mysql/test/suite/rpl/r/rpl_stm_innodb.result
10091share/mysql/test/suite/rpl/r/rpl_stm_lcase_tblnames.result 10109share/mysql/test/suite/rpl/r/rpl_stm_lcase_tblnames.result
10092share/mysql/test/suite/rpl/r/rpl_stm_loaddata_concurrent.result 10110share/mysql/test/suite/rpl/r/rpl_stm_loaddata_concurrent.result
10093share/mysql/test/suite/rpl/r/rpl_stm_loadfile.result 10111share/mysql/test/suite/rpl/r/rpl_stm_loadfile.result
10094share/mysql/test/suite/rpl/r/rpl_stm_log.result 10112share/mysql/test/suite/rpl/r/rpl_stm_log.result
10095share/mysql/test/suite/rpl/r/rpl_stm_max_relay_size.result 10113share/mysql/test/suite/rpl/r/rpl_stm_max_relay_size.result
 10114share/mysql/test/suite/rpl/r/rpl_stm_mix_gtid_disconnect_drop_temporary_table.result
10096share/mysql/test/suite/rpl/r/rpl_stm_mix_rollback_to_savepoint.result 10115share/mysql/test/suite/rpl/r/rpl_stm_mix_rollback_to_savepoint.result
10097share/mysql/test/suite/rpl/r/rpl_stm_mixed_crash_safe.result 10116share/mysql/test/suite/rpl/r/rpl_stm_mixed_crash_safe.result
10098share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_crash_safe.result 10117share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_crash_safe.result
10099share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe.result 10118share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe.result
10100share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_checksum.result 10119share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_checksum.result
10101share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_small.result 10120share/mysql/test/suite/rpl/r/rpl_stm_mixed_mts_rec_crash_safe_small.result
10102share/mysql/test/suite/rpl/r/rpl_stm_mixing_engines.result 10121share/mysql/test/suite/rpl/r/rpl_stm_mixing_engines.result
10103share/mysql/test/suite/rpl/r/rpl_stm_multi_query.result 10122share/mysql/test/suite/rpl/r/rpl_stm_multi_query.result
10104share/mysql/test/suite/rpl/r/rpl_stm_no_op.result 10123share/mysql/test/suite/rpl/r/rpl_stm_no_op.result
10105share/mysql/test/suite/rpl/r/rpl_stm_relay_ign_space.result 10124share/mysql/test/suite/rpl/r/rpl_stm_relay_ign_space.result
10106share/mysql/test/suite/rpl/r/rpl_stm_reset_slave.result 10125share/mysql/test/suite/rpl/r/rpl_stm_reset_slave.result
10107share/mysql/test/suite/rpl/r/rpl_stm_sql_mode.result 10126share/mysql/test/suite/rpl/r/rpl_stm_sql_mode.result
10108share/mysql/test/suite/rpl/r/rpl_stm_start_stop_slave.result 10127share/mysql/test/suite/rpl/r/rpl_stm_start_stop_slave.result
@@ -10157,26 +10176,27 @@ share/mysql/test/suite/rpl/r/rpl_virtual @@ -10157,26 +10176,27 @@ share/mysql/test/suite/rpl/r/rpl_virtual
10157share/mysql/test/suite/rpl/r/rpl_wait_for_executed_gtid_set.result 10176share/mysql/test/suite/rpl/r/rpl_wait_for_executed_gtid_set.result
10158share/mysql/test/suite/rpl/r/rpl_wait_for_executed_gtid_set_no_timeout.result 10177share/mysql/test/suite/rpl/r/rpl_wait_for_executed_gtid_set_no_timeout.result
10159share/mysql/test/suite/rpl/r/rpl_wait_for_executed_gtid_set_with_sleep.result 10178share/mysql/test/suite/rpl/r/rpl_wait_for_executed_gtid_set_with_sleep.result
10160share/mysql/test/suite/rpl/r/rpl_wait_for_gtid_executed_unknown_uuid.result 10179share/mysql/test/suite/rpl/r/rpl_wait_for_gtid_executed_unknown_uuid.result
10161share/mysql/test/suite/rpl/r/rpl_xa_gap_lock.result 10180share/mysql/test/suite/rpl/r/rpl_xa_gap_lock.result
10162share/mysql/test/suite/rpl/r/rpl_xa_one_phase_error.result 10181share/mysql/test/suite/rpl/r/rpl_xa_one_phase_error.result
10163share/mysql/test/suite/rpl/r/rpl_xa_prepare.result 10182share/mysql/test/suite/rpl/r/rpl_xa_prepare.result
10164share/mysql/test/suite/rpl/r/rpl_xa_survive_crash_debug.result 10183share/mysql/test/suite/rpl/r/rpl_xa_survive_crash_debug.result
10165share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect.result 10184share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect.result
10166share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect_lsu_off.result 10185share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect_lsu_off.result
10167share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect_mixed_engines.result 10186share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect_mixed_engines.result
10168share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect_table.result 10187share/mysql/test/suite/rpl/r/rpl_xa_survive_disconnect_table.result
10169share/mysql/test/suite/rpl/r/rpl_xa_unsafe_for_sbr.result 10188share/mysql/test/suite/rpl/r/rpl_xa_unsafe_for_sbr.result
 10189share/mysql/test/suite/rpl/r/rpl_xa_with_filters_binlogless_slave.result
10170share/mysql/test/suite/rpl/r/rpl_xa_with_filters_error_msg.result 10190share/mysql/test/suite/rpl/r/rpl_xa_with_filters_error_msg.result
10171share/mysql/test/suite/rpl/r/rpl_zombie_dump_threads.result 10191share/mysql/test/suite/rpl/r/rpl_zombie_dump_threads.result
10172share/mysql/test/suite/rpl/r/transactional_ddl_locking.result 10192share/mysql/test/suite/rpl/r/transactional_ddl_locking.result
10173share/mysql/test/suite/rpl/rpl_1slave_base.cnf 10193share/mysql/test/suite/rpl/rpl_1slave_base.cnf
10174share/mysql/test/suite/rpl/t/default_row_format_01.test 10194share/mysql/test/suite/rpl/t/default_row_format_01.test
10175share/mysql/test/suite/rpl/t/default_row_format_02-slave.opt 10195share/mysql/test/suite/rpl/t/default_row_format_02-slave.opt
10176share/mysql/test/suite/rpl/t/default_row_format_02.test 10196share/mysql/test/suite/rpl/t/default_row_format_02.test
10177share/mysql/test/suite/rpl/t/disabled.def 10197share/mysql/test/suite/rpl/t/disabled.def
10178share/mysql/test/suite/rpl/t/rpl_0.test 10198share/mysql/test/suite/rpl/t/rpl_0.test
10179share/mysql/test/suite/rpl/t/rpl_000010-slave.opt 10199share/mysql/test/suite/rpl/t/rpl_000010-slave.opt
10180share/mysql/test/suite/rpl/t/rpl_000010.test 10200share/mysql/test/suite/rpl/t/rpl_000010.test
10181share/mysql/test/suite/rpl/t/rpl_000011.test 10201share/mysql/test/suite/rpl/t/rpl_000011.test
10182share/mysql/test/suite/rpl/t/rpl_000013.test 10202share/mysql/test/suite/rpl/t/rpl_000013.test
@@ -10326,26 +10346,27 @@ share/mysql/test/suite/rpl/t/rpl_extra_c @@ -10326,26 +10346,27 @@ share/mysql/test/suite/rpl/t/rpl_extra_c
10326share/mysql/test/suite/rpl/t/rpl_extra_col_slave_myisam.test 10346share/mysql/test/suite/rpl/t/rpl_extra_col_slave_myisam.test
10327share/mysql/test/suite/rpl/t/rpl_extra_row_data.test 10347share/mysql/test/suite/rpl/t/rpl_extra_row_data.test
10328share/mysql/test/suite/rpl/t/rpl_failed_optimize.test 10348share/mysql/test/suite/rpl/t/rpl_failed_optimize.test
10329share/mysql/test/suite/rpl/t/rpl_filter_database-slave.opt 10349share/mysql/test/suite/rpl/t/rpl_filter_database-slave.opt
10330share/mysql/test/suite/rpl/t/rpl_filter_database.test 10350share/mysql/test/suite/rpl/t/rpl_filter_database.test
10331share/mysql/test/suite/rpl/t/rpl_filter_dbs_dynamic.test 10351share/mysql/test/suite/rpl/t/rpl_filter_dbs_dynamic.test
10332share/mysql/test/suite/rpl/t/rpl_filter_rewrite_db_dynamic.test 10352share/mysql/test/suite/rpl/t/rpl_filter_rewrite_db_dynamic.test
10333share/mysql/test/suite/rpl/t/rpl_filter_tables_dynamic.test 10353share/mysql/test/suite/rpl/t/rpl_filter_tables_dynamic.test
10334share/mysql/test/suite/rpl/t/rpl_filter_tables_not_exist-slave.opt 10354share/mysql/test/suite/rpl/t/rpl_filter_tables_not_exist-slave.opt
10335share/mysql/test/suite/rpl/t/rpl_filter_tables_not_exist.test 10355share/mysql/test/suite/rpl/t/rpl_filter_tables_not_exist.test
10336share/mysql/test/suite/rpl/t/rpl_filter_warnings-slave.opt 10356share/mysql/test/suite/rpl/t/rpl_filter_warnings-slave.opt
10337share/mysql/test/suite/rpl/t/rpl_filter_warnings.test 10357share/mysql/test/suite/rpl/t/rpl_filter_warnings.test
10338share/mysql/test/suite/rpl/t/rpl_filter_wild_tables_dynamic.test 10358share/mysql/test/suite/rpl/t/rpl_filter_wild_tables_dynamic.test
 10359share/mysql/test/suite/rpl/t/rpl_flush_log_after_sync_stage.test
10339share/mysql/test/suite/rpl/t/rpl_flush_logs-master.opt 10360share/mysql/test/suite/rpl/t/rpl_flush_logs-master.opt
10340share/mysql/test/suite/rpl/t/rpl_flush_logs.test 10361share/mysql/test/suite/rpl/t/rpl_flush_logs.test
10341share/mysql/test/suite/rpl/t/rpl_flushlog_loop-master.opt 10362share/mysql/test/suite/rpl/t/rpl_flushlog_loop-master.opt
10342share/mysql/test/suite/rpl/t/rpl_flushlog_loop-slave.opt 10363share/mysql/test/suite/rpl/t/rpl_flushlog_loop-slave.opt
10343share/mysql/test/suite/rpl/t/rpl_flushlog_loop.test 10364share/mysql/test/suite/rpl/t/rpl_flushlog_loop.test
10344share/mysql/test/suite/rpl/t/rpl_foreign_key_innodb.test 10365share/mysql/test/suite/rpl/t/rpl_foreign_key_innodb.test
10345share/mysql/test/suite/rpl/t/rpl_free_items-slave.opt 10366share/mysql/test/suite/rpl/t/rpl_free_items-slave.opt
10346share/mysql/test/suite/rpl/t/rpl_free_items.test 10367share/mysql/test/suite/rpl/t/rpl_free_items.test
10347share/mysql/test/suite/rpl/t/rpl_function_defaults.test 10368share/mysql/test/suite/rpl/t/rpl_function_defaults.test
10348share/mysql/test/suite/rpl/t/rpl_general_log.test 10369share/mysql/test/suite/rpl/t/rpl_general_log.test
10349share/mysql/test/suite/rpl/t/rpl_geometry.test 10370share/mysql/test/suite/rpl/t/rpl_geometry.test
10350share/mysql/test/suite/rpl/t/rpl_get_lock.test 10371share/mysql/test/suite/rpl/t/rpl_get_lock.test
10351share/mysql/test/suite/rpl/t/rpl_get_master_version_and_clock-slave.opt 10372share/mysql/test/suite/rpl/t/rpl_get_master_version_and_clock-slave.opt
@@ -10356,27 +10377,26 @@ share/mysql/test/suite/rpl/t/rpl_grant_p @@ -10356,27 +10377,26 @@ share/mysql/test/suite/rpl/t/rpl_grant_p
10356share/mysql/test/suite/rpl/t/rpl_grant_plugin-slave.opt 10377share/mysql/test/suite/rpl/t/rpl_grant_plugin-slave.opt
10357share/mysql/test/suite/rpl/t/rpl_grant_plugin.test 10378share/mysql/test/suite/rpl/t/rpl_grant_plugin.test
10358share/mysql/test/suite/rpl/t/rpl_group_commit_deadlock-master.opt 10379share/mysql/test/suite/rpl/t/rpl_group_commit_deadlock-master.opt
10359share/mysql/test/suite/rpl/t/rpl_group_commit_deadlock.test 10380share/mysql/test/suite/rpl/t/rpl_group_commit_deadlock.test
10360share/mysql/test/suite/rpl/t/rpl_group_commit_update_commit_group.test 10381share/mysql/test/suite/rpl/t/rpl_group_commit_update_commit_group.test
10361share/mysql/test/suite/rpl/t/rpl_group_replication_commands.test 10382share/mysql/test/suite/rpl/t/rpl_group_replication_commands.test
10362share/mysql/test/suite/rpl/t/rpl_group_replication_start_stop_gr_error-master.opt 10383share/mysql/test/suite/rpl/t/rpl_group_replication_start_stop_gr_error-master.opt
10363share/mysql/test/suite/rpl/t/rpl_group_replication_start_stop_gr_error.test 10384share/mysql/test/suite/rpl/t/rpl_group_replication_start_stop_gr_error.test
10364share/mysql/test/suite/rpl/t/rpl_gtid_binary_log_as_relay_log.test 10385share/mysql/test/suite/rpl/t/rpl_gtid_binary_log_as_relay_log.test
10365share/mysql/test/suite/rpl/t/rpl_gtid_compress_thd_ignore_super_read_only-slave.opt 10386share/mysql/test/suite/rpl/t/rpl_gtid_compress_thd_ignore_super_read_only-slave.opt
10366share/mysql/test/suite/rpl/t/rpl_gtid_compress_thd_ignore_super_read_only.test 10387share/mysql/test/suite/rpl/t/rpl_gtid_compress_thd_ignore_super_read_only.test
10367share/mysql/test/suite/rpl/t/rpl_gtid_create_select.test 10388share/mysql/test/suite/rpl/t/rpl_gtid_create_select.test
10368share/mysql/test/suite/rpl/t/rpl_gtid_delete_memory_table_after_start_server.test 10389share/mysql/test/suite/rpl/t/rpl_gtid_delete_memory_table_after_start_server.test
10369share/mysql/test/suite/rpl/t/rpl_gtid_disconnect_drop_temporary_table.test 
10370share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-master.opt 10390share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-master.opt
10371share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-slave.opt 10391share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive-slave.opt
10372share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive.test 10392share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_insensitive.test
10373share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_sensitive-slave.opt 10393share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_sensitive-slave.opt
10374share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_sensitive.test 10394share/mysql/test/suite/rpl/t/rpl_gtid_do_table_filter_sensitive.test
10375share/mysql/test/suite/rpl/t/rpl_gtid_drop_table.cnf 10395share/mysql/test/suite/rpl/t/rpl_gtid_drop_table.cnf
10376share/mysql/test/suite/rpl/t/rpl_gtid_drop_table.test 10396share/mysql/test/suite/rpl/t/rpl_gtid_drop_table.test
10377share/mysql/test/suite/rpl/t/rpl_gtid_dump_error.test 10397share/mysql/test/suite/rpl/t/rpl_gtid_dump_error.test
10378share/mysql/test/suite/rpl/t/rpl_gtid_empty_transaction.cnf 10398share/mysql/test/suite/rpl/t/rpl_gtid_empty_transaction.cnf
10379share/mysql/test/suite/rpl/t/rpl_gtid_empty_transaction.test 10399share/mysql/test/suite/rpl/t/rpl_gtid_empty_transaction.test
10380share/mysql/test/suite/rpl/t/rpl_gtid_events.test 10400share/mysql/test/suite/rpl/t/rpl_gtid_events.test
10381share/mysql/test/suite/rpl/t/rpl_gtid_execution-master.opt 10401share/mysql/test/suite/rpl/t/rpl_gtid_execution-master.opt
10382share/mysql/test/suite/rpl/t/rpl_gtid_execution-slave.opt 10402share/mysql/test/suite/rpl/t/rpl_gtid_execution-slave.opt
@@ -10730,26 +10750,27 @@ share/mysql/test/suite/rpl/t/rpl_plugin_ @@ -10730,26 +10750,27 @@ share/mysql/test/suite/rpl/t/rpl_plugin_
10730share/mysql/test/suite/rpl/t/rpl_plugin_load.test 10750share/mysql/test/suite/rpl/t/rpl_plugin_load.test
10731share/mysql/test/suite/rpl/t/rpl_ps.test 10751share/mysql/test/suite/rpl/t/rpl_ps.test
10732share/mysql/test/suite/rpl/t/rpl_pump-master.opt 10752share/mysql/test/suite/rpl/t/rpl_pump-master.opt
10733share/mysql/test/suite/rpl/t/rpl_pump-slave.opt 10753share/mysql/test/suite/rpl/t/rpl_pump-slave.opt
10734share/mysql/test/suite/rpl/t/rpl_pump.test 10754share/mysql/test/suite/rpl/t/rpl_pump.test
10735share/mysql/test/suite/rpl/t/rpl_rbr_to_sbr.test 10755share/mysql/test/suite/rpl/t/rpl_rbr_to_sbr.test
10736share/mysql/test/suite/rpl/t/rpl_read_old_relay_log_info.test 10756share/mysql/test/suite/rpl/t/rpl_read_old_relay_log_info.test
10737share/mysql/test/suite/rpl/t/rpl_read_only.test 10757share/mysql/test/suite/rpl/t/rpl_read_only.test
10738share/mysql/test/suite/rpl/t/rpl_recovery_empty_sqlthd_pos-slave.opt 10758share/mysql/test/suite/rpl/t/rpl_recovery_empty_sqlthd_pos-slave.opt
10739share/mysql/test/suite/rpl/t/rpl_recovery_empty_sqlthd_pos.test 10759share/mysql/test/suite/rpl/t/rpl_recovery_empty_sqlthd_pos.test
10740share/mysql/test/suite/rpl/t/rpl_recovery_replicate_same_server_id-slave.opt 10760share/mysql/test/suite/rpl/t/rpl_recovery_replicate_same_server_id-slave.opt
10741share/mysql/test/suite/rpl/t/rpl_recovery_replicate_same_server_id.test 10761share/mysql/test/suite/rpl/t/rpl_recovery_replicate_same_server_id.test
10742share/mysql/test/suite/rpl/t/rpl_relay_log_recovery_positions.test 10762share/mysql/test/suite/rpl/t/rpl_relay_log_recovery_positions.test
 10763share/mysql/test/suite/rpl/t/rpl_relay_log_space_synchronization.test
10743share/mysql/test/suite/rpl/t/rpl_relay_space_innodb.test 10764share/mysql/test/suite/rpl/t/rpl_relay_space_innodb.test
10744share/mysql/test/suite/rpl/t/rpl_relay_space_myisam.test 10765share/mysql/test/suite/rpl/t/rpl_relay_space_myisam.test
10745share/mysql/test/suite/rpl/t/rpl_relayrotate-slave.opt 10766share/mysql/test/suite/rpl/t/rpl_relayrotate-slave.opt
10746share/mysql/test/suite/rpl/t/rpl_relayrotate.test 10767share/mysql/test/suite/rpl/t/rpl_relayrotate.test
10747share/mysql/test/suite/rpl/t/rpl_relayspace-slave.opt 10768share/mysql/test/suite/rpl/t/rpl_relayspace-slave.opt
10748share/mysql/test/suite/rpl/t/rpl_relayspace.test 10769share/mysql/test/suite/rpl/t/rpl_relayspace.test
10749share/mysql/test/suite/rpl/t/rpl_replicate_do-slave.opt 10770share/mysql/test/suite/rpl/t/rpl_replicate_do-slave.opt
10750share/mysql/test/suite/rpl/t/rpl_replicate_do.test 10771share/mysql/test/suite/rpl/t/rpl_replicate_do.test
10751share/mysql/test/suite/rpl/t/rpl_replicate_event_after_sync_stage.test 10772share/mysql/test/suite/rpl/t/rpl_replicate_event_after_sync_stage.test
10752share/mysql/test/suite/rpl/t/rpl_replicate_ignore_db-slave.opt 10773share/mysql/test/suite/rpl/t/rpl_replicate_ignore_db-slave.opt
10753share/mysql/test/suite/rpl/t/rpl_replicate_ignore_db.test 10774share/mysql/test/suite/rpl/t/rpl_replicate_ignore_db.test
10754share/mysql/test/suite/rpl/t/rpl_replicate_rewrite_db.test 10775share/mysql/test/suite/rpl/t/rpl_replicate_rewrite_db.test
10755share/mysql/test/suite/rpl/t/rpl_replicate_same_server_id-master.opt 10776share/mysql/test/suite/rpl/t/rpl_replicate_same_server_id-master.opt
@@ -10829,26 +10850,27 @@ share/mysql/test/suite/rpl/t/rpl_row_cre @@ -10829,26 +10850,27 @@ share/mysql/test/suite/rpl/t/rpl_row_cre
10829share/mysql/test/suite/rpl/t/rpl_row_create_table.test 10850share/mysql/test/suite/rpl/t/rpl_row_create_table.test
10830share/mysql/test/suite/rpl/t/rpl_row_drop.test 10851share/mysql/test/suite/rpl/t/rpl_row_drop.test
10831share/mysql/test/suite/rpl/t/rpl_row_drop_create_temp_table.test 10852share/mysql/test/suite/rpl/t/rpl_row_drop_create_temp_table.test
10832share/mysql/test/suite/rpl/t/rpl_row_err_daisychain-master.opt 10853share/mysql/test/suite/rpl/t/rpl_row_err_daisychain-master.opt
10833share/mysql/test/suite/rpl/t/rpl_row_err_daisychain-slave.opt 10854share/mysql/test/suite/rpl/t/rpl_row_err_daisychain-slave.opt
10834share/mysql/test/suite/rpl/t/rpl_row_event_max_size-master.opt 10855share/mysql/test/suite/rpl/t/rpl_row_event_max_size-master.opt
10835share/mysql/test/suite/rpl/t/rpl_row_event_max_size-slave.opt 10856share/mysql/test/suite/rpl/t/rpl_row_event_max_size-slave.opt
10836share/mysql/test/suite/rpl/t/rpl_row_event_max_size.test 10857share/mysql/test/suite/rpl/t/rpl_row_event_max_size.test
10837share/mysql/test/suite/rpl/t/rpl_row_find_row.test 10858share/mysql/test/suite/rpl/t/rpl_row_find_row.test
10838share/mysql/test/suite/rpl/t/rpl_row_flsh_tbls.test 10859share/mysql/test/suite/rpl/t/rpl_row_flsh_tbls.test
10839share/mysql/test/suite/rpl/t/rpl_row_func001.test 10860share/mysql/test/suite/rpl/t/rpl_row_func001.test
10840share/mysql/test/suite/rpl/t/rpl_row_func002.test 10861share/mysql/test/suite/rpl/t/rpl_row_func002.test
10841share/mysql/test/suite/rpl/t/rpl_row_func003.test 10862share/mysql/test/suite/rpl/t/rpl_row_func003.test
 10863share/mysql/test/suite/rpl/t/rpl_row_gtid_disconnect_drop_temporary_table.test
10842share/mysql/test/suite/rpl/t/rpl_row_hash_scan.test 10864share/mysql/test/suite/rpl/t/rpl_row_hash_scan.test
10843share/mysql/test/suite/rpl/t/rpl_row_hash_scan_sanity.test 10865share/mysql/test/suite/rpl/t/rpl_row_hash_scan_sanity.test
10844share/mysql/test/suite/rpl/t/rpl_row_idempotency.test 10866share/mysql/test/suite/rpl/t/rpl_row_idempotency.test
10845share/mysql/test/suite/rpl/t/rpl_row_ignorable_event-master.opt 10867share/mysql/test/suite/rpl/t/rpl_row_ignorable_event-master.opt
10846share/mysql/test/suite/rpl/t/rpl_row_ignorable_event-slave.opt 10868share/mysql/test/suite/rpl/t/rpl_row_ignorable_event-slave.opt
10847share/mysql/test/suite/rpl/t/rpl_row_ignorable_event.test 10869share/mysql/test/suite/rpl/t/rpl_row_ignorable_event.test
10848share/mysql/test/suite/rpl/t/rpl_row_img.cnf 10870share/mysql/test/suite/rpl/t/rpl_row_img.cnf
10849share/mysql/test/suite/rpl/t/rpl_row_img_blobs.cnf 10871share/mysql/test/suite/rpl/t/rpl_row_img_blobs.cnf
10850share/mysql/test/suite/rpl/t/rpl_row_img_blobs.test 10872share/mysql/test/suite/rpl/t/rpl_row_img_blobs.test
10851share/mysql/test/suite/rpl/t/rpl_row_img_eng_full.cnf 10873share/mysql/test/suite/rpl/t/rpl_row_img_eng_full.cnf
10852share/mysql/test/suite/rpl/t/rpl_row_img_eng_full.test 10874share/mysql/test/suite/rpl/t/rpl_row_img_eng_full.test
10853share/mysql/test/suite/rpl/t/rpl_row_img_eng_min.cnf 10875share/mysql/test/suite/rpl/t/rpl_row_img_eng_min.cnf
10854share/mysql/test/suite/rpl/t/rpl_row_img_eng_min.test 10876share/mysql/test/suite/rpl/t/rpl_row_img_eng_min.test
@@ -11057,26 +11079,27 @@ share/mysql/test/suite/rpl/t/rpl_stm_fls @@ -11057,26 +11079,27 @@ share/mysql/test/suite/rpl/t/rpl_stm_fls
11057share/mysql/test/suite/rpl/t/rpl_stm_found_rows.test 11079share/mysql/test/suite/rpl/t/rpl_stm_found_rows.test
11058share/mysql/test/suite/rpl/t/rpl_stm_ignore-slave.opt 11080share/mysql/test/suite/rpl/t/rpl_stm_ignore-slave.opt
11059share/mysql/test/suite/rpl/t/rpl_stm_ignore.test 11081share/mysql/test/suite/rpl/t/rpl_stm_ignore.test
11060share/mysql/test/suite/rpl/t/rpl_stm_implicit_commit_binlog-master.opt 11082share/mysql/test/suite/rpl/t/rpl_stm_implicit_commit_binlog-master.opt
11061share/mysql/test/suite/rpl/t/rpl_stm_implicit_commit_binlog-slave.opt 11083share/mysql/test/suite/rpl/t/rpl_stm_implicit_commit_binlog-slave.opt
11062share/mysql/test/suite/rpl/t/rpl_stm_implicit_commit_binlog.test 11084share/mysql/test/suite/rpl/t/rpl_stm_implicit_commit_binlog.test
11063share/mysql/test/suite/rpl/t/rpl_stm_innodb.test 11085share/mysql/test/suite/rpl/t/rpl_stm_innodb.test
11064share/mysql/test/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt 11086share/mysql/test/suite/rpl/t/rpl_stm_lcase_tblnames-slave.opt
11065share/mysql/test/suite/rpl/t/rpl_stm_lcase_tblnames.test 11087share/mysql/test/suite/rpl/t/rpl_stm_lcase_tblnames.test
11066share/mysql/test/suite/rpl/t/rpl_stm_loaddata_concurrent.test 11088share/mysql/test/suite/rpl/t/rpl_stm_loaddata_concurrent.test
11067share/mysql/test/suite/rpl/t/rpl_stm_loadfile.test 11089share/mysql/test/suite/rpl/t/rpl_stm_loadfile.test
11068share/mysql/test/suite/rpl/t/rpl_stm_log.test 11090share/mysql/test/suite/rpl/t/rpl_stm_log.test
11069share/mysql/test/suite/rpl/t/rpl_stm_max_relay_size.test 11091share/mysql/test/suite/rpl/t/rpl_stm_max_relay_size.test
 11092share/mysql/test/suite/rpl/t/rpl_stm_mix_gtid_disconnect_drop_temporary_table.test
11070share/mysql/test/suite/rpl/t/rpl_stm_mix_rollback_to_savepoint.test 11093share/mysql/test/suite/rpl/t/rpl_stm_mix_rollback_to_savepoint.test
11071share/mysql/test/suite/rpl/t/rpl_stm_mixed_crash_safe-slave.opt 11094share/mysql/test/suite/rpl/t/rpl_stm_mixed_crash_safe-slave.opt
11072share/mysql/test/suite/rpl/t/rpl_stm_mixed_crash_safe.test 11095share/mysql/test/suite/rpl/t/rpl_stm_mixed_crash_safe.test
11073share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_crash_safe-slave.opt 11096share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_crash_safe-slave.opt
11074share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_crash_safe.test 11097share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_crash_safe.test
11075share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe-slave.opt 11098share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe-slave.opt
11076share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe.test 11099share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe.test
11077share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt 11100share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-master.opt
11078share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-slave.opt 11101share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum-slave.opt
11079share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum.test 11102share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_checksum.test
11080share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small-slave.opt 11103share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small-slave.opt
11081share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small.test 11104share/mysql/test/suite/rpl/t/rpl_stm_mixed_mts_rec_crash_safe_small.test
11082share/mysql/test/suite/rpl/t/rpl_stm_mixing_engines.test 11105share/mysql/test/suite/rpl/t/rpl_stm_mixing_engines.test
@@ -11159,26 +11182,28 @@ share/mysql/test/suite/rpl/t/rpl_wait_fo @@ -11159,26 +11182,28 @@ share/mysql/test/suite/rpl/t/rpl_wait_fo
11159share/mysql/test/suite/rpl/t/rpl_wait_for_executed_gtid_set_with_sleep.test 11182share/mysql/test/suite/rpl/t/rpl_wait_for_executed_gtid_set_with_sleep.test
11160share/mysql/test/suite/rpl/t/rpl_wait_for_gtid_executed_unknown_uuid.test 11183share/mysql/test/suite/rpl/t/rpl_wait_for_gtid_executed_unknown_uuid.test
11161share/mysql/test/suite/rpl/t/rpl_xa_gap_lock.test 11184share/mysql/test/suite/rpl/t/rpl_xa_gap_lock.test
11162share/mysql/test/suite/rpl/t/rpl_xa_one_phase_error.test 11185share/mysql/test/suite/rpl/t/rpl_xa_one_phase_error.test
11163share/mysql/test/suite/rpl/t/rpl_xa_prepare.test 11186share/mysql/test/suite/rpl/t/rpl_xa_prepare.test
11164share/mysql/test/suite/rpl/t/rpl_xa_survive_crash_debug.test 11187share/mysql/test/suite/rpl/t/rpl_xa_survive_crash_debug.test
11165share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect.test 11188share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect.test
11166share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_lsu_off-slave.opt 11189share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_lsu_off-slave.opt
11167share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_lsu_off.test 11190share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_lsu_off.test
11168share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_mixed_engines.test 11191share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_mixed_engines.test
11169share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_table-slave.opt 11192share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_table-slave.opt
11170share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_table.test 11193share/mysql/test/suite/rpl/t/rpl_xa_survive_disconnect_table.test
11171share/mysql/test/suite/rpl/t/rpl_xa_unsafe_for_sbr.test 11194share/mysql/test/suite/rpl/t/rpl_xa_unsafe_for_sbr.test
 11195share/mysql/test/suite/rpl/t/rpl_xa_with_filters_binlogless_slave-slave.opt
 11196share/mysql/test/suite/rpl/t/rpl_xa_with_filters_binlogless_slave.test
11172share/mysql/test/suite/rpl/t/rpl_xa_with_filters_error_msg.test 11197share/mysql/test/suite/rpl/t/rpl_xa_with_filters_error_msg.test
11173share/mysql/test/suite/rpl/t/rpl_zombie_dump_threads.test 11198share/mysql/test/suite/rpl/t/rpl_zombie_dump_threads.test
11174share/mysql/test/suite/rpl/t/transactional_ddl_locking.test 11199share/mysql/test/suite/rpl/t/transactional_ddl_locking.test
11175share/mysql/test/suite/rpl_ndb/my.cnf 11200share/mysql/test/suite/rpl_ndb/my.cnf
11176share/mysql/test/suite/rpl_ndb/r/rpl_ndb_UUID.result 11201share/mysql/test/suite/rpl_ndb/r/rpl_ndb_UUID.result
11177share/mysql/test/suite/rpl_ndb/r/rpl_ndb_blob2.result 11202share/mysql/test/suite/rpl_ndb/r/rpl_ndb_blob2.result
11178share/mysql/test/suite/rpl_ndb/r/rpl_ndb_commit_afterflush.result.THIS 11203share/mysql/test/suite/rpl_ndb/r/rpl_ndb_commit_afterflush.result.THIS
11179share/mysql/test/suite/rpl_ndb/r/rpl_ndb_ddl.result 11204share/mysql/test/suite/rpl_ndb/r/rpl_ndb_ddl.result
11180share/mysql/test/suite/rpl_ndb/r/rpl_ndb_delete_nowhere.result 11205share/mysql/test/suite/rpl_ndb/r/rpl_ndb_delete_nowhere.result
11181share/mysql/test/suite/rpl_ndb/r/rpl_ndb_extra_col_master.result 11206share/mysql/test/suite/rpl_ndb/r/rpl_ndb_extra_col_master.result
11182share/mysql/test/suite/rpl_ndb/r/rpl_ndb_extra_col_slave.result 11207share/mysql/test/suite/rpl_ndb/r/rpl_ndb_extra_col_slave.result
11183share/mysql/test/suite/rpl_ndb/r/rpl_ndb_func003.result 11208share/mysql/test/suite/rpl_ndb/r/rpl_ndb_func003.result
11184share/mysql/test/suite/rpl_ndb/r/rpl_ndb_insert_ignore.result 11209share/mysql/test/suite/rpl_ndb/r/rpl_ndb_insert_ignore.result
@@ -11686,26 +11711,27 @@ share/mysql/test/suite/sys_vars/r/myisam @@ -11686,26 +11711,27 @@ share/mysql/test/suite/sys_vars/r/myisam
11686share/mysql/test/suite/sys_vars/r/myisam_recover_options_basic.result 11711share/mysql/test/suite/sys_vars/r/myisam_recover_options_basic.result
11687share/mysql/test/suite/sys_vars/r/myisam_repair_threads_basic_32.result 11712share/mysql/test/suite/sys_vars/r/myisam_repair_threads_basic_32.result
11688share/mysql/test/suite/sys_vars/r/myisam_repair_threads_basic_64.result 11713share/mysql/test/suite/sys_vars/r/myisam_repair_threads_basic_64.result
11689share/mysql/test/suite/sys_vars/r/myisam_sort_buffer_size_basic_32.result 11714share/mysql/test/suite/sys_vars/r/myisam_sort_buffer_size_basic_32.result
11690share/mysql/test/suite/sys_vars/r/myisam_sort_buffer_size_basic_64.result 11715share/mysql/test/suite/sys_vars/r/myisam_sort_buffer_size_basic_64.result
11691share/mysql/test/suite/sys_vars/r/myisam_stats_method_basic.result 11716share/mysql/test/suite/sys_vars/r/myisam_stats_method_basic.result
11692share/mysql/test/suite/sys_vars/r/myisam_stats_method_func.result 11717share/mysql/test/suite/sys_vars/r/myisam_stats_method_func.result
11693share/mysql/test/suite/sys_vars/r/myisam_use_mmap_basic.result 11718share/mysql/test/suite/sys_vars/r/myisam_use_mmap_basic.result
11694share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_basic.result 11719share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_basic.result
11695share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_cmdl.result 11720share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_cmdl.result
11696share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_func.result 11721share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_func.result
11697share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_log.result 11722share/mysql/test/suite/sys_vars/r/mysql_native_password_proxy_users_log.result
11698share/mysql/test/suite/sys_vars/r/named_pipe_basic.result 11723share/mysql/test/suite/sys_vars/r/named_pipe_basic.result
 11724share/mysql/test/suite/sys_vars/r/named_pipe_full_access_group_basic.result
11699share/mysql/test/suite/sys_vars/r/net_buffer_length_basic.result 11725share/mysql/test/suite/sys_vars/r/net_buffer_length_basic.result
11700share/mysql/test/suite/sys_vars/r/net_read_timeout_basic.result 11726share/mysql/test/suite/sys_vars/r/net_read_timeout_basic.result
11701share/mysql/test/suite/sys_vars/r/net_retry_count_basic_32.result 11727share/mysql/test/suite/sys_vars/r/net_retry_count_basic_32.result
11702share/mysql/test/suite/sys_vars/r/net_retry_count_basic_64.result 11728share/mysql/test/suite/sys_vars/r/net_retry_count_basic_64.result
11703share/mysql/test/suite/sys_vars/r/net_write_timeout_basic.result 11729share/mysql/test/suite/sys_vars/r/net_write_timeout_basic.result
11704share/mysql/test/suite/sys_vars/r/new_basic.result 11730share/mysql/test/suite/sys_vars/r/new_basic.result
11705share/mysql/test/suite/sys_vars/r/ngram_token_size_basic.result 11731share/mysql/test/suite/sys_vars/r/ngram_token_size_basic.result
11706share/mysql/test/suite/sys_vars/r/offline_mode_basic.result 11732share/mysql/test/suite/sys_vars/r/offline_mode_basic.result
11707share/mysql/test/suite/sys_vars/r/old_alter_table_basic.result 11733share/mysql/test/suite/sys_vars/r/old_alter_table_basic.result
11708share/mysql/test/suite/sys_vars/r/old_basic.result 11734share/mysql/test/suite/sys_vars/r/old_basic.result
11709share/mysql/test/suite/sys_vars/r/old_passwords_basic.result 11735share/mysql/test/suite/sys_vars/r/old_passwords_basic.result
11710share/mysql/test/suite/sys_vars/r/old_passwords_func.result 11736share/mysql/test/suite/sys_vars/r/old_passwords_func.result
11711share/mysql/test/suite/sys_vars/r/open_files_limit_basic.result 11737share/mysql/test/suite/sys_vars/r/open_files_limit_basic.result
@@ -12392,26 +12418,27 @@ share/mysql/test/suite/sys_vars/t/myisam @@ -12392,26 +12418,27 @@ share/mysql/test/suite/sys_vars/t/myisam
12392share/mysql/test/suite/sys_vars/t/myisam_repair_threads_basic_32.test 12418share/mysql/test/suite/sys_vars/t/myisam_repair_threads_basic_32.test
12393share/mysql/test/suite/sys_vars/t/myisam_repair_threads_basic_64.test 12419share/mysql/test/suite/sys_vars/t/myisam_repair_threads_basic_64.test
12394share/mysql/test/suite/sys_vars/t/myisam_sort_buffer_size_basic_32.test 12420share/mysql/test/suite/sys_vars/t/myisam_sort_buffer_size_basic_32.test
12395share/mysql/test/suite/sys_vars/t/myisam_sort_buffer_size_basic_64.test 12421share/mysql/test/suite/sys_vars/t/myisam_sort_buffer_size_basic_64.test
12396share/mysql/test/suite/sys_vars/t/myisam_stats_method_basic.test 12422share/mysql/test/suite/sys_vars/t/myisam_stats_method_basic.test
12397share/mysql/test/suite/sys_vars/t/myisam_stats_method_func.test 12423share/mysql/test/suite/sys_vars/t/myisam_stats_method_func.test
12398share/mysql/test/suite/sys_vars/t/myisam_use_mmap_basic.test 12424share/mysql/test/suite/sys_vars/t/myisam_use_mmap_basic.test
12399share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_basic.test 12425share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_basic.test
12400share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_cmdl-master.opt 12426share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_cmdl-master.opt
12401share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_cmdl.test 12427share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_cmdl.test
12402share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_func.test 12428share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_func.test
12403share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_log.test 12429share/mysql/test/suite/sys_vars/t/mysql_native_password_proxy_users_log.test
12404share/mysql/test/suite/sys_vars/t/named_pipe_basic.test 12430share/mysql/test/suite/sys_vars/t/named_pipe_basic.test
 12431share/mysql/test/suite/sys_vars/t/named_pipe_full_access_group_basic.test
12405share/mysql/test/suite/sys_vars/t/net_buffer_length_basic.test 12432share/mysql/test/suite/sys_vars/t/net_buffer_length_basic.test
12406share/mysql/test/suite/sys_vars/t/net_read_timeout_basic.test 12433share/mysql/test/suite/sys_vars/t/net_read_timeout_basic.test
12407share/mysql/test/suite/sys_vars/t/net_retry_count_basic_32.test 12434share/mysql/test/suite/sys_vars/t/net_retry_count_basic_32.test
12408share/mysql/test/suite/sys_vars/t/net_retry_count_basic_64.test 12435share/mysql/test/suite/sys_vars/t/net_retry_count_basic_64.test
12409share/mysql/test/suite/sys_vars/t/net_write_timeout_basic.test 12436share/mysql/test/suite/sys_vars/t/net_write_timeout_basic.test
12410share/mysql/test/suite/sys_vars/t/new_basic.test 12437share/mysql/test/suite/sys_vars/t/new_basic.test
12411share/mysql/test/suite/sys_vars/t/ngram_token_size_basic.test 12438share/mysql/test/suite/sys_vars/t/ngram_token_size_basic.test
12412share/mysql/test/suite/sys_vars/t/offline_mode_basic.test 12439share/mysql/test/suite/sys_vars/t/offline_mode_basic.test
12413share/mysql/test/suite/sys_vars/t/old_alter_table_basic.test 12440share/mysql/test/suite/sys_vars/t/old_alter_table_basic.test
12414share/mysql/test/suite/sys_vars/t/old_basic.test 12441share/mysql/test/suite/sys_vars/t/old_basic.test
12415share/mysql/test/suite/sys_vars/t/old_passwords_basic.test 12442share/mysql/test/suite/sys_vars/t/old_passwords_basic.test
12416share/mysql/test/suite/sys_vars/t/old_passwords_func.test 12443share/mysql/test/suite/sys_vars/t/old_passwords_func.test
12417share/mysql/test/suite/sys_vars/t/open_files_limit_basic.test 12444share/mysql/test/suite/sys_vars/t/open_files_limit_basic.test