pkgsrc-Changes-HG archive

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

[pkgsrc/pkgsrc-2017Q2]: pkgsrc/databases Pullup ticket #5526 - requested by taca



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a67d2952d9be
branches:  pkgsrc-2017Q2
changeset: 408664:a67d2952d9be
user:      spz <spz%pkgsrc.org@localhost>
date:      Sun Jul 30 04:57:58 2017 +0000

description:
Pullup ticket #5526 - requested by taca
databases/mysql57-client: security update
databases/mysql57-server: security update

Revisions pulled up:
- databases/mysql57-client/Makefile                             1.7
- databases/mysql57-client/Makefile.common                      1.6
- databases/mysql57-client/PLIST                                1.5
- databases/mysql57-client/distinfo                             1.12
- databases/mysql57-client/patches/patch-libmysql_CMakeLists.txt 1.2
- databases/mysql57-client/patches/patch-mysys_my__symlink.c    1.1
- databases/mysql57-server/Makefile                             1.8
- databases/mysql57-server/PLIST                                1.5

-------------------------------------------------------------------
   Module Name: pkgsrc
   Committed By:        adam
   Date:                Thu Jul 20 16:41:10 UTC 2017

   Modified Files:
        pkgsrc/databases/mysql57-client: Makefile Makefile.common PLIST
            distinfo
        pkgsrc/databases/mysql57-client/patches: patch-libmysql_CMakeLists.txt
        pkgsrc/databases/mysql57-server: Makefile PLIST
   Added Files:
        pkgsrc/databases/mysql57-client/patches: patch-mysys_my__symlink.c

   Log Message:
   Security Notes
   * Security Fix: The linked OpenSSL library for the MySQL Commercial Server has been updated to version 1.0.2l. 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.

   Platform-Specific Notes
   * Linux: The generic Linux build for MySQL 5.6 is now built on Oracle Linux 6 using glibc 2.12. Systems that use the build need to have glibc 2.12 or later installed on them.

   Functionality Added or Changed
   * For Windows, MSI installer packages now include a check for the required Visual Studio redistributable package, and produce a message asking the user to install it if it is missing.
   * The mysql client now supports a --binary-as-hex option that causes display of binary data using hexadecimal notation (0xvalue). Thanks to Dani?l van Eeden for the patch.
   * mysqlaccess now looks for its configuration file only in the SYSCONFDIR directory and /etc.

   Bugs Fixed
   * InnoDB: The server allocated memory unnecessarily for an operation that rebuilt the table.
   * InnoDB: When using an index merge optimizer switch, a SELECT COUNT(*) operation sometimes returned 0. Partitioning code incorrectly performed a memcpy instead of a column copy of columns read by 
the index, causing the wrong records to be copied.
   * Replication: A USE statement that followed a SET GTID_NEXT statement sometimes had no effect.
   * Replication: If the binary log on a master server was rotated and a full disk condition occurred on the partition where the binary log file was being stored, the server could stop unexpectedly. 
The fix adds a check for the existence of the binary log when the dump thread switches to next binary log file. If the binary log is disabled, all binary logs up to the current active log are 
transmitted to slave and an error is returned to the receiver thread.
   * Replication: If a relay log index file named relay log files that did not exist, RESET SLAVE ALL sometimes did not fully clean up properly.
   * Replication: mysqlbinlog, if invoked with the --raw option, does not flush the output file until the process terminates. But if also invoked with the --stop-never option, the process never 
terminates, thus nothing is ever written to the output file. Now the output is flushed after each event.
   * Replication: A memory leak in mysqlbinlog was fixed. The leak happened when processing fake rotate events, or when using --raw and the destination log file could not be created. The leak only 
occurred when processing events from a remote server. Thanks to Laurynas Biveinis for his contribution to fixing this bug.
   * Replication: Multi-threaded slaves could not be configured with small queue sizes using slave_pending_jobs_size_max if they ever needed to process transactions larger than that size. Any packet 
larger than slave_pending_jobs_size_max was rejected with the error ER_MTS_EVENT_BIGGER_PENDING_JOBS_SIZE_MAX, even if the packet was smaller than the limit set by slave_max_allowed_packet.
   * With this fix, slave_pending_jobs_size_max becomes a soft limit rather than a hard limit. If the size of a packet exceeds slave_pending_jobs_size_max but is less than slave_max_allowed_packet, 
the transaction is held until all the slave workers have empty queues, and then processed. All subsequent transactions are held until the large transaction has been completed. The queue size for 
slave workers can therefore be limited while still allowing occasional larger transactions.
   * mysqldump could write database names in USE statements incorrectly.
   * If the mysql_stmt_close() C API function was called, it freed memory that later could be accessed if mysql_stmt_error(), mysql_stmt_errno(), or mysql_stmt_sqlstate() was called. To obtain error 
information after a call to mysql_stmt_close(), call mysql_error(), mysql_errno(), or mysql_sqlstate() instead.
   * Queries could be cached incorrectly, leading to incorrect query results, under these circumstances: InnoDB table; rows are being inserted but have not yet been committed; a query uses the table 
as a base table in a derived table; the optimizer chooses to materialize the derived table.
   * Man pages for a few utilities were missing from Debian/Ubuntu packages.
   * The field-t unit test failed to run with AddressSanitizer enabled. Thanks to Laurynas Biveinis for the patch.
   * Debian client packages were missing information about conflicts with native packages.
   * The Perl path in #! lines at the beginning of Perl scripts has been adjusted to /usr/local/bin/perl for FreeBSD 11.
   * The server exited abnormally attempting to access invalid memory.
   * A race condition could occur for CREATE TABLE statements with DATA DIRECTORY or INDEX DIRECTORY clauses.
   * MySQL compilation in different directories produced different builds to leakage of absolute paths into debug information and __FILE__.
   * mysqld_failed to start the server if the --datadir option was specified with a relative path name.
   * With read_only enabled, creation of non-TEMPORARY tables by non-SUPER users was permitted under certain conditions.
   *Certain stored functions, if used in a query WHERE clause, could be handled using Index Condition Pushdown (which should not happen), resulting in a server exit.
   * On x86 machines, the uint3korr() macro read 4 bytes of data instead of the intended 3 bytes.
   * An assertion was raised during a fetch operation by the memcached plugin.
   * Queries that contained UNION in a subquery and GROUP BY could return incorrect results.
   * LOAD XML INFILE performance became noticeably slower when the XML file being read contained a great many spaces, such as those introduced by indenting or pretty-printing. Now all leading 
whitespace is trimmed from each such value before reading it into memory.


   To generate a diff of this commit:
   cvs rdiff -u -r1.6 -r1.7 pkgsrc/databases/mysql57-client/Makefile
   cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/mysql57-client/Makefile.common
   cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/mysql57-client/PLIST
   cvs rdiff -u -r1.11 -r1.12 pkgsrc/databases/mysql57-client/distinfo
   cvs rdiff -u -r1.1 -r1.2 \
       pkgsrc/databases/mysql57-client/patches/patch-libmysql_CMakeLists.txt
   cvs rdiff -u -r0 -r1.1 \
       pkgsrc/databases/mysql57-client/patches/patch-mysys_my__symlink.c
   cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/mysql57-server/Makefile
   cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/mysql57-server/PLIST

diffstat:

 databases/mysql57-client/Makefile                              |    3 +-
 databases/mysql57-client/Makefile.common                       |    9 +-
 databases/mysql57-client/PLIST                                 |    4 +-
 databases/mysql57-client/distinfo                              |   13 +-
 databases/mysql57-client/patches/patch-libmysql_CMakeLists.txt |   31 +-
 databases/mysql57-client/patches/patch-mysys_my__symlink.c     |   14 +
 databases/mysql57-server/Makefile                              |   13 +-
 databases/mysql57-server/PLIST                                 |  158 ++++++++-
 8 files changed, 207 insertions(+), 38 deletions(-)

diffs (truncated from 943 to 300 lines):

diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-client/Makefile
--- a/databases/mysql57-client/Makefile Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-client/Makefile Sun Jul 30 04:57:58 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2017/04/30 01:21:31 ryoon Exp $
+# $NetBSD: Makefile,v 1.6.2.1 2017/07/30 04:57:58 spz Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-client-/}
-PKGREVISION=   1
 COMMENT=       MySQL 5, a free SQL database (client)
 
 CONFLICTS=     mysql3-client-[0-9]*
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-client/Makefile.common
--- a/databases/mysql57-client/Makefile.common  Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-client/Makefile.common  Sun Jul 30 04:57:58 2017 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.common,v 1.5 2017/05/05 16:22:29 jperkin Exp $
+# $NetBSD: Makefile.common,v 1.5.2.1 2017/07/30 04:57:58 spz Exp $
 #
 # used by databases/mysql57-client/Makefile
 # used by databases/mysql57-server/Makefile
 
-DISTNAME=      mysql-5.7.18
+DISTNAME=      mysql-5.7.19
 CATEGORIES=    databases
 MASTER_SITES=  ${MASTER_SITE_MYSQL:=MySQL-5.7/}
 
@@ -103,10 +103,11 @@
 
 SUBST_CLASSES+=                scr
 SUBST_STAGE.scr=       pre-configure
-SUBST_FILES.scr=       scripts/mysqld_safe.sh \
-                       support-files/mysql.server.sh
+SUBST_FILES.scr=       scripts/mysqld_safe.sh
+SUBST_FILES.scr+=      support-files/mysql.server.sh
 SUBST_SED.scr=         -e "s,chown,${CHOWN},g"
 SUBST_SED.scr+=                -e "s,/bin/sh,${RCD_SCRIPTS_SHELL},g"
+SUBST_SED.scr+=                -e "s,@SHELL_PATH@,${RCD_SCRIPTS_SHELL},g"
 SUBST_MESSAGE.scr=     Fixing scripts.
 
 # Don't use the base system "libedit" under NetBSD because MySQL expects
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-client/PLIST
--- a/databases/mysql57-client/PLIST    Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-client/PLIST    Sun Jul 30 04:57:58 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2017/04/11 20:49:15 adam Exp $
+@comment $NetBSD: PLIST,v 1.4.2.1 2017/07/30 04:57:58 spz Exp $
 bin/mysql
 bin/mysql_client_test
 bin/mysql_config
@@ -122,7 +122,7 @@
 lib/libmysqlclient.a
 lib/libmysqlclient.so
 lib/libmysqlclient.so.20
-lib/libmysqlclient.so.20.3.5
+lib/libmysqlclient.so.20.3.6
 lib/pkgconfig/mysqlclient.pc
 man/man1/comp_err.1
 man/man1/innochecksum.1
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-client/distinfo
--- a/databases/mysql57-client/distinfo Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-client/distinfo Sun Jul 30 04:57:58 2017 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.11 2017/04/30 05:10:32 adam Exp $
+$NetBSD: distinfo,v 1.11.2.1 2017/07/30 04:57:58 spz Exp $
 
-SHA1 (mysql-5.7.18.tar.gz) = d53fdc5f392af138cd66e13ee6d4e865767181e7
-RMD160 (mysql-5.7.18.tar.gz) = 40264f1c4a9113d6c84356488d2a2a7bc80920ad
-SHA512 (mysql-5.7.18.tar.gz) = 88f8df96008d44328d184402dadf1dc54d5522fd4b0aebc8de8a6c11b4f38ae15d8b7f8112d8ff0015d6d46de11ef9275e1e2fd6b757afafce2a53503d3970dc
-Size (mysql-5.7.18.tar.gz) = 51567774 bytes
+SHA1 (mysql-5.7.19.tar.gz) = 2420bd5f12664c18313779668a8256aea53e52a0
+RMD160 (mysql-5.7.19.tar.gz) = 69f52cee63fe1344c487bd40e027a7dc57d067f7
+SHA512 (mysql-5.7.19.tar.gz) = 04296e480fc91381137a32d064f6d33d0a96b28ae64ca1202ef045a8e78434a61e81d83e36b8bfa7fccdcf37f1b65e955b4466c7d036bc014cecac83f0c4b1cf
+Size (mysql-5.7.19.tar.gz) = 51686763 bytes
 SHA1 (patch-CMakeLists.txt) = b47592cf8801538375da3df2990fde4d292fc365
 SHA1 (patch-client_CMakeLists.txt) = 304023577ab9c2152ca21fa9ff4895a22a321adf
 SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb
@@ -18,10 +18,11 @@
 SHA1 (patch-include_my__global.h) = 3870266cb1dd2cd0d58417dfe21bab19b62100e2
 SHA1 (patch-include_my__thread.h) = 0f095acf94f8d130516dc4d858de1c64dd2bc127
 SHA1 (patch-include_my__thread__os__id.h) = a51861b791086a0eeb9cb4d64892c5033da8c8eb
-SHA1 (patch-libmysql_CMakeLists.txt) = 0105627fb9a5be56eaf21cda927589e0ffd99758
+SHA1 (patch-libmysql_CMakeLists.txt) = 00ce9c7f0e2c4132b872ffde05ee74e81c280f68
 SHA1 (patch-mysql-test_CMakeLists.txt) = 4ba56ce255f5f89d9aece93181e54ddb572f301b
 SHA1 (patch-mysys__ssl_CMakeLists.txt) = 7ec44642cd13c5477175a94a007354c583ca9c3c
 SHA1 (patch-mysys_kqueue__timers.c) = 836803e9c7353b813bc22a5b69cc263dea384c9b
+SHA1 (patch-mysys_my__symlink.c) = 23b57cd5922357d0bc72f5c15100a9fe1f89cfb2
 SHA1 (patch-mysys_stacktrace.c) = 3e0794f544f0e35f44a694330885478247657842
 SHA1 (patch-rapid_plugin_group__replication_libmysqlgcs_src_bindings_xcom_xcom_sock__probe__ix.c) = 1a389fca13ada1be74d96276e11baee16bbc2363
 SHA1 (patch-rapid_plugin_group__replication_libmysqlgcs_src_bindings_xcom_xcom_xcom__memory.c) = 7077900830f904c74c79439b856d9d176fc27f15
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-client/patches/patch-libmysql_CMakeLists.txt
--- a/databases/mysql57-client/patches/patch-libmysql_CMakeLists.txt    Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-client/patches/patch-libmysql_CMakeLists.txt    Sun Jul 30 04:57:58 2017 +0000
@@ -1,13 +1,22 @@
-$NetBSD: patch-libmysql_CMakeLists.txt,v 1.1 2016/09/16 06:49:11 adam Exp $
+$NetBSD: patch-libmysql_CMakeLists.txt,v 1.1.8.1 2017/07/30 04:57:58 spz Exp $
 
 Do not install libmysqlclient with the server.
 Generate versioned lib symlinks on FreeBSD to supress PLIST divergence.
+authentication_ldap and libmysql_api_test require libmysqld.
 
---- libmysql/CMakeLists.txt.orig       2016-06-30 06:22:11.000000000 +0000
+--- libmysql/CMakeLists.txt.orig       2017-06-22 14:13:19.000000000 +0000
 +++ libmysql/CMakeLists.txt
-@@ -231,7 +231,11 @@ IF(WIN32)
+@@ -230,12 +230,18 @@ IF(WIN32)
+   LIST(APPEND LIBS auth_win_client)
  ENDIF()
  
++IF(NOT WITHOUT_SERVER)
+ # LDAP authentication SASL client plugin
+ MESSAGE(STATUS "Creating LDAP authentication SASL client library.")
+-ADD_SUBDIRECTORY(authentication_ldap)
++#ADD_SUBDIRECTORY(authentication_ldap)
++ENDIF()
+   
  # Merge several convenience libraries into one big mysqlclient
 +IF(WITHOUT_SERVER)
  MERGE_LIBRARIES(mysqlclient STATIC ${LIBS} COMPONENT Development)
@@ -17,7 +26,7 @@
  
  # Visual Studio users need debug  static library for debug projects
  IF(MSVC)
-@@ -271,12 +275,18 @@ ENDIF()
+@@ -275,12 +281,18 @@ ENDIF()
  IF(NOT DISABLE_SHARED)
    # Merge several convenience libraries into one big mysqlclient
    # and link them together into shared library.
@@ -37,3 +46,17 @@
        SET(OS_SHARED_LIB_VERSION "${SHARED_LIB_MAJOR_VERSION}")
      ELSE()
        SET(OS_SHARED_LIB_VERSION
+@@ -348,6 +360,7 @@ CONFIGURE_FILE(api_test.c.in ${CMAKE_CUR
+ # from @CLIENT_API_FUNCTIONS@ are declared by <mysql.h>. It will fail
+ # to run if not all of these symbols are exported by the library.
+ #
++IF(NOT WITHOUT_SERVER)
+ ADD_EXECUTABLE(libmysql_api_test ${CMAKE_CURRENT_BINARY_DIR}/api_test.c)
+ SET_TARGET_PROPERTIES(libmysql_api_test PROPERTIES LINKER_LANGUAGE CXX)
+ IF(LIBRT)
+@@ -359,4 +372,5 @@ IF(DISABLE_SHARED)
+ ELSE()
+   TARGET_LINK_LIBRARIES(libmysql_api_test libmysql)
+ ENDIF()
++ENDIF()
+ 
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-client/patches/patch-mysys_my__symlink.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/databases/mysql57-client/patches/patch-mysys_my__symlink.c        Sun Jul 30 04:57:58 2017 +0000
@@ -0,0 +1,14 @@
+$NetBSD: patch-mysys_my__symlink.c,v 1.1.2.2 2017/07/30 04:57:58 spz Exp $
+
+Add missing include, so MY_STAT gets defined.
+
+--- mysys/my_symlink.c.orig    2017-07-19 17:59:04.500183903 +0000
++++ mysys/my_symlink.c
+@@ -15,6 +15,7 @@
+ 
+ #include "mysys_priv.h"
+ #include "my_sys.h"
++#include "my_dir.h"
+ #include "mysys_err.h"
+ #include <m_string.h>
+ #include <errno.h>
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-server/Makefile
--- a/databases/mysql57-server/Makefile Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-server/Makefile Sun Jul 30 04:57:58 2017 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2017/06/24 15:18:42 schmonz Exp $
+# $NetBSD: Makefile,v 1.7.2.1 2017/07/30 04:57:58 spz Exp $
 
 PKGNAME=       ${DISTNAME:S/-/-server-/}
-PKGREVISION=   2
 COMMENT=       MySQL 5, a free SQL database (server)
 
 CONFLICTS=     mysql3-server-[0-9]*
@@ -58,8 +57,6 @@
 REPLACE_PERL+=         mysql-test/suite/opt_trace/validate_json.pl
 REPLACE_PERL+=         mysql-test/suite/rpl/extension/bhs.pl
 REPLACE_PERL+=         mysql-test/suite/rpl/extension/checksum.pl
-REPLACE_PERL+=         scripts/mysqld_multi.sh
-REPLACE_PERL+=         scripts/mysqldumpslow.sh
 
 REPLACE_SH+=           mysql-test/suite/rpl/t/rpl_loaddata_symlink-master.sh
 REPLACE_SH+=           mysql-test/suite/rpl/t/rpl_loaddata_symlink-slave.sh
@@ -71,6 +68,14 @@
 CHECK_INTERPRETER_SKIP+=share/mysql/test/std_data/dtrace.d \
                        share/mysql/test/suite/opt_trace/validate_json.py
 
+SUBST_CLASSES+=                perlpath
+SUBST_STAGE.perlpath=  pre-configure
+SUBST_MESSAGE.perlpath=        Fixing Perl paths.
+SUBST_FILES.perlpath=  scripts/mysql_config.pl.in
+SUBST_FILES.perlpath+= scripts/mysqld_multi.sh
+SUBST_FILES.perlpath+= scripts/mysqldumpslow.sh
+SUBST_SED.perlpath=    -e 's,@PERL_PATH@,${PERL5},g'
+
 # Replace interpreter without pulling in Python dependecy
 # Update when PYTHON_VERSION_DEFAULT changes!
 SUBST_CLASSES+=                python
diff -r 32aaa595e3ce -r a67d2952d9be databases/mysql57-server/PLIST
--- a/databases/mysql57-server/PLIST    Sat Jul 29 20:15:00 2017 +0000
+++ b/databases/mysql57-server/PLIST    Sun Jul 30 04:57:58 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.4 2017/04/11 20:49:15 adam Exp $
+@comment $NetBSD: PLIST,v 1.4.2.1 2017/07/30 04:57:58 spz Exp $
 bin/innochecksum
 bin/lz4_decompress
 bin/my_print_defaults
@@ -238,6 +238,7 @@
 share/mysql/test/extra/rpl_tests/rpl_conflicts.test
 share/mysql/test/extra/rpl_tests/rpl_crash_safe.inc
 share/mysql/test/extra/rpl_tests/rpl_crash_safe.test
+share/mysql/test/extra/rpl_tests/rpl_create_msr_channels.inc
 share/mysql/test/extra/rpl_tests/rpl_ddl.test
 share/mysql/test/extra/rpl_tests/rpl_deadlock.test
 share/mysql/test/extra/rpl_tests/rpl_delete_no_where.test
@@ -256,6 +257,7 @@
 share/mysql/test/extra/rpl_tests/rpl_generate_mts_gap.test
 share/mysql/test/extra/rpl_tests/rpl_get_master_version_and_clock.test
 share/mysql/test/extra/rpl_tests/rpl_gtid_drop_table.inc
+share/mysql/test/extra/rpl_tests/rpl_gtid_mixed_rows_and_stmts_tx_isolation_error.inc
 share/mysql/test/extra/rpl_tests/rpl_gtid_mts_relay_log_recovery.test
 share/mysql/test/extra/rpl_tests/rpl_gtid_temp_table_in_func_or_trigger.inc
 share/mysql/test/extra/rpl_tests/rpl_gtids_restart_slave_io_lost_trx.test
@@ -279,9 +281,11 @@
 share/mysql/test/extra/rpl_tests/rpl_mts_crash_safe.inc
 share/mysql/test/extra/rpl_tests/rpl_mts_crash_safe.test
 share/mysql/test/extra/rpl_tests/rpl_mts_execute_partial_trx_in_relay_log.inc
+share/mysql/test/extra/rpl_tests/rpl_mts_pending_events.inc
 share/mysql/test/extra/rpl_tests/rpl_mts_relay_log_recovery.test
 share/mysql/test/extra/rpl_tests/rpl_mts_transaction_retry.inc
 share/mysql/test/extra/rpl_tests/rpl_multi_query.test
+share/mysql/test/extra/rpl_tests/rpl_multi_source_corrupt_repository.inc
 share/mysql/test/extra/rpl_tests/rpl_multi_source_generate_mts_gap.test
 share/mysql/test/extra/rpl_tests/rpl_multi_update.test
 share/mysql/test/extra/rpl_tests/rpl_multi_update2.test
@@ -357,6 +361,7 @@
 share/mysql/test/include/assert_gtid_mode_on.inc
 share/mysql/test/include/assert_logical_timestamps.inc
 share/mysql/test/include/assert_no_warnings.inc
+share/mysql/test/include/assert_rbr_only_flags.inc
 share/mysql/test/include/assert_semisync_master_status_off.inc
 share/mysql/test/include/assert_semisync_master_status_on.inc
 share/mysql/test/include/assert_semisync_yesno_tx_increment.inc
@@ -657,6 +662,7 @@
 share/mysql/test/include/is_embedded.inc
 share/mysql/test/include/join_cache.inc
 share/mysql/test/include/keyring_udf_keyring_plugin_loaded.inc
+share/mysql/test/include/keyring_udf_keyring_plugin_loaded_store_operations.inc
 share/mysql/test/include/keyring_udf_keyring_plugin_loaded_symmetric.inc
 share/mysql/test/include/keyring_udf_keyring_plugin_not_loaded.inc
 share/mysql/test/include/keyring_udf_keyring_udf_plugin_not_loaded.inc
@@ -1029,6 +1035,7 @@
 share/mysql/test/r/big_test.require
 share/mysql/test/r/bigint.result
 share/mysql/test/r/binary.result
+share/mysql/test/r/binary_to_hex.result
 share/mysql/test/r/binlog_tx_isolation.result
 share/mysql/test/r/blackhole.result
 share/mysql/test/r/blackhole_plugin.result
@@ -1542,6 +1549,7 @@
 share/mysql/test/r/mysql_upgrade.result
 share/mysql/test/r/mysql_upgrade_slave_master_info.result
 share/mysql/test/r/mysql_upgrade_ssl.result
+share/mysql/test/r/mysql_upgrade_with_session_user.result
 share/mysql/test/r/mysqladmin.result
 share/mysql/test/r/mysqlbinlog.result
 share/mysql/test/r/mysqlbinlog_debug.result
@@ -1788,6 +1796,7 @@
 share/mysql/test/r/shm.result
 share/mysql/test/r/shm_server_restart.result
 share/mysql/test/r/show_check.result
+share/mysql/test/r/show_processlist_state.result
 share/mysql/test/r/show_profile.result
 share/mysql/test/r/show_variables.result
 share/mysql/test/r/shutdown.result
@@ -2097,6 +2106,12 @@
 share/mysql/test/std_data/crldir/ab8a3803.r0
 share/mysql/test/std_data/des_key_file
 share/mysql/test/std_data/dtrace.d
+share/mysql/test/std_data/expired-ca-key.pem
+share/mysql/test/std_data/expired-ca.pem
+share/mysql/test/std_data/expired-client-cert.pem
+share/mysql/test/std_data/expired-client-key.pem
+share/mysql/test/std_data/expired-server-cert.pem
+share/mysql/test/std_data/expired-server-key.pem
 share/mysql/test/std_data/funcs_1/innodb_tb1.txt
 share/mysql/test/std_data/funcs_1/innodb_tb2.txt
 share/mysql/test/std_data/funcs_1/innodb_tb3.txt
@@ -2368,12 +2383,14 @@
 share/mysql/test/suite/binlog/r/binlog_gtid_mysqlbinlog_row_innodb.result
 share/mysql/test/suite/binlog/r/binlog_gtid_mysqlbinlog_row_myisam.result
 share/mysql/test/suite/binlog/r/binlog_gtid_mysqlbinlog_start_stop.result
+share/mysql/test/suite/binlog/r/binlog_gtid_mysqldump.result
 share/mysql/test/suite/binlog/r/binlog_gtid_next_begin_caused_trx.result
 share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_grant.result
 share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_stmts.result
 share/mysql/test/suite/binlog/r/binlog_gtid_next_single_stmt_trx_rollback.result
 share/mysql/test/suite/binlog/r/binlog_gtid_next_temporary_table.result



Home | Main Index | Thread Index | Old Index