Skip to content

Commit 76edad6

Browse files
committed
AC-12085:: Add compatibility with MariaDB 11.4 LTS For CE
1 parent cd1dadc commit 76edad6

File tree

1 file changed

+1
-1
lines changed
  • dev/tests/integration/framework/Magento/TestFramework/Db

1 file changed

+1
-1
lines changed

dev/tests/integration/framework/Magento/TestFramework/Db/Mysql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ private function isMariaDB(): bool
275275
'mariadb-dump --version'
276276
);
277277
$pattern = "/((?:[0-9]+\.?)+)(.*?)(mariadb)/i";
278-
preg_match($pattern, $version === null ? $version : '', $matches);
278+
preg_match($pattern, $version !== null ? $version : '', $matches);
279279
$currentVersion = $matches[1] ?? '';
280280
$isMariadb = isset($matches[3]);
281281
if ($isMariadb

0 commit comments

Comments
 (0)