Merge pull request #8430 from sminnee/fix-6300

FIX: Don’t use USE_FRM in MySQL repair. Fixes #6300.
This commit is contained in:
Loz Calver 2018-10-02 10:28:17 +02:00 committed by GitHub
commit 27076aeb93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,7 +167,7 @@ class MySQLSchemaManager extends DBSchemaManager
"Table $tableName: repaired",
"repaired"
);
return $this->runTableCheckCommand("REPAIR TABLE \"$tableName\" USE_FRM");
return $this->runTableCheckCommand("REPAIR TABLE \"$tableName\"");
}
/**