Skip to content

Commit a007e23

Browse files
author
Michael Logvin
committed
MAGETWO-34646: Magento is compatible with MySql Cluster
1 parent a890834 commit a007e23

File tree

1 file changed

+1
-1
lines changed
  • lib/internal/Magento/Framework/DB/Adapter/Pdo

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@ public function newTable($tableName = null, $schemaName = null)
19351935
if ($schemaName !== null) {
19361936
$table->setSchema($schemaName);
19371937
}
1938-
if ($this->_config['engine'] !== null) {
1938+
if (isset($this->_config['engine'])) {
19391939
$table->setOption('type', $this->_config['engine']);
19401940
}
19411941

0 commit comments

Comments
 (0)