fix for bug #390244: code to drop the user_title column from moz_places table (see bug #389876) makes the places.sqlite file 30% bigger r=dietrich

This commit is contained in:
sspitzer@mozilla.org 2007-09-05 08:18:33 -07:00
Родитель ce5d3ed85b
Коммит fddd63970d
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -3349,11 +3349,10 @@ nsNavHistory::PerformVacuumIfIdle()
NS_ENSURE_SUCCESS(rv, rv);
}
else {
#if 0
// Currently commented out because compression is very slow
// if our database was created before incremental vacuuming
// do a full vacuum on idle
rv = mDBConn->ExecuteSimpleSQL(NS_LITERAL_CSTRING("VACUUM;"));
NS_ENSURE_SUCCESS(rv, rv);
#endif
}
}
return NS_OK;