Skip to content

Commit 5ad4f56

Browse files
committed
AC-12085:: Add compatibility with MariaDB 11.4 LTS For CE
1 parent 5277498 commit 5ad4f56

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ private function isMariaDB(): bool
297297
*/
298298
protected function getDbCommand()
299299
{
300-
return $this->isMariaDB() ? 'mariadb' : 'mysql';
300+
return $this->isMariaDB() ? 'mariadb-import' : 'mysql';
301301
}
302302

303303
/**
@@ -307,6 +307,6 @@ protected function getDbCommand()
307307
*/
308308
protected function getDbDumpCommand()
309309
{
310-
return $this->isMariaDB() ? 'mysqldump' : 'mariadb-dump';
310+
return $this->isMariaDB() ? 'mariadb-dump' : 'mysqldump';
311311
}
312312
}

0 commit comments

Comments
 (0)