We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d67fdd commit c77a8f5Copy full SHA for c77a8f5
lib/internal/Magento/Framework/DB/Adapter/Pdo/Mysql.php
@@ -2670,7 +2670,8 @@ public function isTableExists($tableName, $schemaName = null)
2670
$fromDbName = $this->quote($schemaName);
2671
}
2672
2673
- $sql = sprintf('SELECT COUNT(1) AS tbl_exists FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = %s AND TABLE_SCHEMA = %s',
+ $sql = sprintf(
2674
+ 'SELECT COUNT(1) AS tbl_exists FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = %s AND TABLE_SCHEMA = %s',
2675
$this->quote($tableName),
2676
$fromDbName
2677
);
0 commit comments