summaryrefslogtreecommitdiff
path: root/databases/mysql80-client/files/patch-include_myisam.h
diff options
context:
space:
mode:
authorMahdi Mokhtari <mmokhi@FreeBSD.org>2018-05-12 15:35:25 +0000
committerMahdi Mokhtari <mmokhi@FreeBSD.org>2018-05-12 15:35:25 +0000
commitacca27b6ca8327e93f12cb06800447a44129d72a (patch)
tree82f92efa85f110d6c1ceb5c7f78a94138fbaaf69 /databases/mysql80-client/files/patch-include_myisam.h
parentsysutils/fusefs-libs: sort USES (diff)
databases/mysql80-{client,server}: Upgrade the ports to GA version 8.0.11
Fix build with LibreSSL and OpenSSL-devel ports as well MySQL 8.0.11 is the General Availability (GA) version of MySQL 8. MySQL since this version supports FIPS-mode, if compiled using OpenSSL, AND an OpenSSL library and FIPS Object Module are available at runtime. FIPS mode imposes conditions on cryptographic operations such as restrictions on acceptable encryption algorithms or requirements for longer key lengths. The --ssl-fips-mode client option enables control of FIPS mode on the client side for: mysql, mysqladmin, mysqlbinlog, mysqlcheck, mysqldump, mysqlimport, mysqlpump, ... This update includes bugfixes including (not limited to): -InnoDB: The server was stopped before a fatal error message was written to the error log. -InnoDB: An incorrect GROUP BY result was returned when using the TempTable storage engine and a NO PAD collation. -InnoDB: The data retrieved from INFORMATION_SCHEMA.INNODB_COLUMNS was incorrect for tables containing a virtual column. Full Release-Notes are available at: https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-11.html
Diffstat (limited to 'databases/mysql80-client/files/patch-include_myisam.h')
-rw-r--r--databases/mysql80-client/files/patch-include_myisam.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/databases/mysql80-client/files/patch-include_myisam.h b/databases/mysql80-client/files/patch-include_myisam.h
index 0a4b795e9426..99493293f483 100644
--- a/databases/mysql80-client/files/patch-include_myisam.h
+++ b/databases/mysql80-client/files/patch-include_myisam.h
@@ -1,11 +1,11 @@
---- include/myisam.h.orig 2016-03-28 18:06:12 UTC
+--- include/myisam.h.orig 2018-04-08 06:44:49 UTC
+++ include/myisam.h
-@@ -45,7 +45,7 @@ extern "C" {
+@@ -59,7 +59,7 @@
The following defines can be increased if necessary.
But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and MI_MAX_KEY_LENGTH.
*/
--#define MI_MAX_KEY_LENGTH 1000 /* Max length in bytes */
-+#define MI_MAX_KEY_LENGTH 4000 /* Max length in bytes */
- #define MI_MAX_KEY_SEG 16 /* Max segments for key */
+-#define MI_MAX_KEY_LENGTH 1000 /* Max length in bytes */
++#define MI_MAX_KEY_LENGTH 4000 /* Max length in bytes */
+ #define MI_MAX_KEY_SEG 16 /* Max segments for key */
- #define MI_MAX_KEY_BUFF (MI_MAX_KEY_LENGTH+MI_MAX_KEY_SEG*6+8+8)
+ #define MI_MAX_KEY_BUFF (MI_MAX_KEY_LENGTH + MI_MAX_KEY_SEG * 6 + 8 + 8)