Skip to content

Commit 5277498

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

File tree

1 file changed

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

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function cleanup()
9696

9797
$this->ensureDefaultsExtraFile();
9898
$this->_shell->execute(
99-
"`{$dbCommand}` --defaults-file=%s --host=%s --port=%s %s -e %s",
99+
"{$dbCommand} --defaults-file=%s --host=%s --port=%s %s -e %s",
100100
[
101101
$this->_defaultsExtraFile,
102102
$this->_host,
@@ -146,7 +146,7 @@ public function storeDbDump()
146146

147147
$format = sprintf(
148148
'%s %s %s %s',
149-
"`{$dumpCommand}` --defaults-file=%s --host=%s --port=%s",
149+
"{$dumpCommand} --defaults-file=%s --host=%s --port=%s",
150150
'--no-tablespaces',
151151
implode(' ', $additionalArguments),
152152
'%s > %s'
@@ -179,7 +179,7 @@ public function restoreFromDbDump()
179179
$dbCommand = $this->getDbCommand();
180180

181181
$this->_shell->execute(
182-
"`{$dbCommand}` --defaults-file=%s --host=%s --port=%s %s < %s",
182+
"{$dbCommand} --defaults-file=%s --host=%s --port=%s %s < %s",
183183
[$this->_defaultsExtraFile, $this->_host, $this->_port,
184184
$this->_schema, $this->getSetupDbDumpFilename()]
185185
);

0 commit comments

Comments
 (0)