We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7900de + c39741f commit 299a62bCopy full SHA for 299a62b
apps/settings/lib/SetupChecks/MysqlRowFormat.php
@@ -56,11 +56,11 @@ public function run(): SetupResult {
56
* @return string[]
57
*/
58
private function getRowNotDynamicTables(): array {
59
- $sql = 'SELECT table_name
+ $sql = "SELECT table_name
60
FROM information_schema.tables
61
WHERE table_schema = ?
62
- AND table_name LIKE "*PREFIX*%"
63
- AND row_format != "Dynamic";';
+ AND table_name LIKE '*PREFIX*%'
+ AND row_format != 'Dynamic';";
64
65
return $this->connection->executeQuery(
66
$sql,
0 commit comments