Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/settings/lib/SetupChecks/MysqlRowFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ public function run(): SetupResult {
* @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,
Expand Down
Loading