BUG FIX: spelling mistake fixed

This commit is contained in:
Geoff Munn 2009-09-29 22:19:48 +00:00
parent a8b5ee4297
commit 172ca7e4ea
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ class PostgreSQLDatabase extends Database {
*/
public function checkAndRepairTable($tableName) {
$this->runTableCheckCommand("VACUUM FULL ANALYZE \"$tableName\"");
$this->runTableChechCommand("REINDEX TABLE \"$tableName\"");
$this->runTableCheckCommand("REINDEX TABLE \"$tableName\"");
return true;
}