aboutsummaryrefslogtreecommitdiff
path: root/databases/mysql56-server/files
diff options
context:
space:
mode:
authorJochen Neumeister <joneum@FreeBSD.org>2020-04-28 21:08:35 +0000
committerJochen Neumeister <joneum@FreeBSD.org>2020-04-28 21:08:35 +0000
commit35ec20a170f19deb87490d34344b582a2c185aa9 (patch)
tree6abbfa98a34d61d6d1cef09d0101b5724cc1a69e /databases/mysql56-server/files
parent512e2f0cfa843bac953f51c60ec3a683a6530ee7 (diff)
downloadports-35ec20a170f19deb87490d34344b582a2c185aa9.tar.gz
ports-35ec20a170f19deb87490d34344b582a2c185aa9.zip
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
Notes
Notes: svn path=/head/; revision=533270
Diffstat (limited to 'databases/mysql56-server/files')
-rw-r--r--databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc b/databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc
new file mode 100644
index 000000000000..1b4ba6429308
--- /dev/null
+++ b/databases/mysql56-server/files/patch-storage_innobase_handler_i_s.cc
@@ -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 <sql_plugin.h>
+ #include <mysql/innodb_priv.h>
+
++#include <string>
++#include <sstream>
++#include <iostream>
++
+ #include "btr0pcur.h"
+ #include "btr0types.h"
+ #include "dict0dict.h"