From owner-svn-ports-all@freebsd.org Tue Apr 28 21:08:37 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 069052C515F; Tue, 28 Apr 2020 21:08:37 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49BZ4h6Nn3z4JHR; Tue, 28 Apr 2020 21:08:36 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D23B32A6A2; Tue, 28 Apr 2020 21:08:36 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 03SL8awJ099072; Tue, 28 Apr 2020 21:08:36 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 03SL8ZhJ099068; Tue, 28 Apr 2020 21:08:35 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <202004282108.03SL8ZhJ099068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 28 Apr 2020 21:08:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533270 - in head/databases: mysql56-client mysql56-server mysql56-server/files X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in head/databases: mysql56-client mysql56-server mysql56-server/files X-SVN-Commit-Revision: 533270 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Apr 2020 21:08:37 -0000 Author: joneum Date: Tue Apr 28 21:08:35 2020 New Revision: 533270 URL: https://svnweb.freebsd.org/changeset/ports/533270 Log: databases/mysql56-{client, server}: Update to latest release 5.6.48 Bugfix: - InnoDB: A tablespace import operation that failed due to the source and destination tables being defined with different DATA DIRECTORY clauses reported an insufficiently descriptive schema mismatch error. Moreover, if a .cfg file was not present, the same operation would raise an assertion failure. A more informative error message is now reported in both cases before the import operation is terminated due to the data directory mismatch. - InnoDB: Updating certain InnoDB system variables that take string values raised invalid read errors during Valgrind testing. - Replication: In the event of an unplanned disconnection of a replication slave from the master, the reference to the master's dump thread might not be removed from the list of registered slaves, in which case statements that accessed the list of slaves would fail. The issue has now been fixed - Replication: With the settings binlog_format=MIXED, tx_isolation=READ-COMMITTED, and binlog_row_image=FULL, an INSERT ... SELECT query involving a transactional storage engine omitted any columns with a null value from the row image written to the binary log. This happened because when processing INSERT ... SELECT statements, the columns were marked for inserts before the binary logging format was selected. The issue has now been fixed. More Infos: https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-48.html MFH: 2020Q2 Security: 21d59ea3-8559-11ea-a5e2-d4c9ef517024 (MySQL - Server) Security: 622b5c47-855b-11ea-a5e2-d4c9ef517024 (MySQL - Client) Sponsored by: Netzkommune GmbH Added: head/databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc (contents, props changed) Modified: head/databases/mysql56-client/Makefile head/databases/mysql56-server/Makefile head/databases/mysql56-server/distinfo Modified: head/databases/mysql56-client/Makefile ============================================================================== --- head/databases/mysql56-client/Makefile Tue Apr 28 21:06:03 2020 (r533269) +++ head/databases/mysql56-client/Makefile Tue Apr 28 21:08:35 2020 (r533270) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mysql -PORTREVISION= 1 +PORTREVISION= 0 PKGNAMESUFFIX= 56-client COMMENT= Multithreaded SQL database (client) Modified: head/databases/mysql56-server/Makefile ============================================================================== --- head/databases/mysql56-server/Makefile Tue Apr 28 21:06:03 2020 (r533269) +++ head/databases/mysql56-server/Makefile Tue Apr 28 21:08:35 2020 (r533270) @@ -2,8 +2,8 @@ # $FreeBSD$ PORTNAME?= mysql -PORTVERSION= 5.6.47 -PORTREVISION?= 1 +PORTVERSION= 5.6.48 +PORTREVISION?= 0 CATEGORIES= databases MASTER_SITES= MYSQL/MySQL-5.6 PKGNAMESUFFIX?= 56-server @@ -139,8 +139,8 @@ FEDERATED_SUB_LIST_OFF+= FEDER="" USES+= compiler:gcc-c++11-lib USE_CXXSTD= gnu++11 .else -USES+= compiler:c++11-lang -USE_CXXSTD= gnu++98 +USES+= compiler:c++11-lib +USE_CXXSTD= c++11 .endif .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200057 Modified: head/databases/mysql56-server/distinfo ============================================================================== --- head/databases/mysql56-server/distinfo Tue Apr 28 21:06:03 2020 (r533269) +++ head/databases/mysql56-server/distinfo Tue Apr 28 21:08:35 2020 (r533270) @@ -1,3 +1,3 @@ -TIMESTAMP = 1579257087 -SHA256 (mysql-5.6.47.tar.gz) = 0919096705784c62af831bb607e99345083edd76967c8c65966728742a9127fe -SIZE (mysql-5.6.47.tar.gz) = 32388152 +TIMESTAMP = 1588086392 +SHA256 (mysql-5.6.48.tar.gz) = 82a423acd1f74c1ff5787c38a8b6dc00d36b55662ad50c73bb2261bbc95035c2 +SIZE (mysql-5.6.48.tar.gz) = 32401200 Added: head/databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc Tue Apr 28 21:08:35 2020 (r533270) @@ -0,0 +1,13 @@ +--- storage/innobase/handler/i_s.cc.orig 2020-03-09 10:37:59 UTC ++++ storage/innobase/handler/i_s.cc +@@ -43,6 +43,10 @@ Created July 18, 2007 Vasil Dimov + #include + #include + ++#include ++#include ++#include ++ + #include "btr0pcur.h" + #include "btr0types.h" + #include "dict0dict.h"