From ef1428d2b536c61c1e4166e1ee16c10d3f8bedd8 Mon Sep 17 00:00:00 2001 From: Jochen Neumeister Date: Sun, 26 Oct 2025 16:25:31 +0100 Subject: databases/mysql94-{server|client}: add new Ports Welcome MySQL 9.4 What is new in MySQL9.4: https://dev.mysql.com/doc/relnotes/mysql/9.4/en/news-9-4-0.html MySQL8.4+ supports only 64-bit platforms! Sponsored by: Netzkommune GmbH --- .../files/patch-unittest_gunit_stream__cipher-t.cc | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 databases/mysql94-server/files/patch-unittest_gunit_stream__cipher-t.cc (limited to 'databases/mysql94-server/files/patch-unittest_gunit_stream__cipher-t.cc') diff --git a/databases/mysql94-server/files/patch-unittest_gunit_stream__cipher-t.cc b/databases/mysql94-server/files/patch-unittest_gunit_stream__cipher-t.cc new file mode 100644 index 000000000000..0f182b2ae151 --- /dev/null +++ b/databases/mysql94-server/files/patch-unittest_gunit_stream__cipher-t.cc @@ -0,0 +1,15 @@ +--- unittest/gunit/stream_cipher-t.cc.orig 2024-07-12 19:20:22 UTC ++++ unittest/gunit/stream_cipher-t.cc +@@ -251,10 +251,10 @@ void SetKeyStr(Key_string &key_str, const unsigned cha + template + void SetKeyStr(Key_string &key_str, const unsigned char *key) { + if (key) { +- key_str.assign(key, T::PASSWORD_LENGTH); ++ key_str.assign(key, key + T::PASSWORD_LENGTH); + } else { + const unsigned char new_key[T::PASSWORD_LENGTH]{0}; +- key_str.assign(new_key, T::PASSWORD_LENGTH); ++ key_str.assign(new_key, new_key + T::PASSWORD_LENGTH); + } + } + -- cgit v1.2.3