]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 2042214: fix table format conversion in MariaDB (#215)
authorDave Miller <justdave@bugzilla.org>
Mon, 6 Jul 2026 06:11:06 +0000 (02:11 -0400)
committerGitHub <noreply@github.com>
Mon, 6 Jul 2026 06:11:06 +0000 (02:11 -0400)
r=mrenvoize

Bugzilla/DB/MariaDB.pm

index c57ebd02340093535ab53bd0e8ec868980e7bf4e..09e03762e3231a792523112e73c633bda998db2d 100644 (file)
@@ -354,7 +354,7 @@ sub bz_setup_database {
     die install_string('mysql_innodb_disabled');
   }
 
-  if ($self->utf8_charset eq 'utf8mb3') {
+  if ($self->utf8_charset eq 'utf8mb4') {
     my %global = map {@$_}
       @{$self->selectall_arrayref(q(SHOW GLOBAL VARIABLES LIKE 'innodb_%'))};