aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/settings/lib/SetupChecks/MysqlRowFormat.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/lib/SetupChecks/MysqlRowFormat.php b/apps/settings/lib/SetupChecks/MysqlRowFormat.php
index 17e7fc6696b..3c27b73db89 100644
--- a/apps/settings/lib/SetupChecks/MysqlRowFormat.php
+++ b/apps/settings/lib/SetupChecks/MysqlRowFormat.php
@@ -56,11 +56,11 @@ class MysqlRowFormat implements ISetupCheck {
* @return string[]
*/
private function getRowNotDynamicTables(): array {
- $sql = 'SELECT table_name
+ $sql = "SELECT table_name
FROM information_schema.tables
WHERE table_schema = ?
- AND table_name LIKE "*PREFIX*%"
- AND row_format != "Dynamic";';
+ AND table_name LIKE '*PREFIX*%'
+ AND row_format != 'Dynamic';";
return $this->connection->executeQuery(
$sql,