mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 20:50:31 -04:00
Welcome MySQL 8.4 What is new in MySQL8.4 since MySQL 9.0: https://dev.mysql.com/doc/refman/9.0/en/mysql-nutshell.html HINT: MySQL8.4+ supports only 64-bit platforms!!! Sponsored by: Netzkommune GmbH
19 lines
395 B
Objective-C
19 lines
395 B
Objective-C
--- sql/stream_cipher.h.orig 2024-07-12 19:20:22 UTC
|
|
+++ sql/stream_cipher.h
|
|
@@ -27,6 +27,7 @@
|
|
#include <openssl/evp.h>
|
|
#include <memory>
|
|
#include <string>
|
|
+#include <vector>
|
|
|
|
/**
|
|
@file stream_cipher.h
|
|
@@ -35,7 +36,7 @@
|
|
binary log files.
|
|
*/
|
|
|
|
-typedef std::basic_string<unsigned char> Key_string;
|
|
+typedef std::vector<unsigned char> Key_string;
|
|
|
|
/**
|
|
@class Stream_cipher
|