Skip to content

Commit f5e21da

Browse files
committed
Revert "MySQL bug #93276 is fixed in 8.0.15"
This reverts commit 5f3272e. MySQL bug #93276 is not fixed in 8.0.15 yet. Fixes: #137 See: https://bugs.mysql.com/bug.php?id=93276
1 parent 08eb69f commit f5e21da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dbdimp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,9 @@ PERL_STATIC_INLINE UV SvUV_nomg(pTHX_ SV *sv)
335335
/*
336336
* MySQL and MariaDB Embedded are affected by https://jira.mariadb.org/browse/MDEV-16578
337337
* MariaDB 10.2.2+ prior to 10.2.19 and 10.3.9 and MariaDB Connector/C prior to 3.0.5 are affected by https://jira.mariadb.org/browse/CONC-336
338-
* MySQL 8.0.4+ prior to 8.0.15 is affected too by https://bugs.mysql.com/bug.php?id=93276
338+
* MySQL 8.0.4+ is affected too by https://bugs.mysql.com/bug.php?id=93276
339339
*/
340-
#if defined(HAVE_EMBEDDED) || (!defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 80004 && MYSQL_VERSION_ID < 80015) || (defined(MARIADB_PACKAGE_VERSION) && (!defined(MARIADB_PACKAGE_VERSION_ID) || MARIADB_PACKAGE_VERSION_ID < 30005)) || (defined(MARIADB_VERSION_ID) && ((MARIADB_VERSION_ID >= 100202 && MARIADB_VERSION_ID < 100219) || (MARIADB_VERSION_ID >= 100300 && MARIADB_VERSION_ID < 100309)))
340+
#if defined(HAVE_EMBEDDED) || (!defined(MARIADB_BASE_VERSION) && MYSQL_VERSION_ID >= 80004) || (defined(MARIADB_PACKAGE_VERSION) && (!defined(MARIADB_PACKAGE_VERSION_ID) || MARIADB_PACKAGE_VERSION_ID < 30005)) || (defined(MARIADB_VERSION_ID) && ((MARIADB_VERSION_ID >= 100202 && MARIADB_VERSION_ID < 100219) || (MARIADB_VERSION_ID >= 100300 && MARIADB_VERSION_ID < 100309)))
341341
#define HAVE_BROKEN_INIT
342342
#endif
343343

0 commit comments

Comments
 (0)