From a2a8e15eb019a053220dd2d8a4f5675dcc8fae3b Mon Sep 17 00:00:00 2001 From: "benjamin@smedbergs.us" Date: Wed, 5 Sep 2007 12:16:52 -0700 Subject: [PATCH] Backout bug 390244 due to tbox orange, per #developers --- toolkit/components/places/src/nsNavHistory.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/toolkit/components/places/src/nsNavHistory.cpp b/toolkit/components/places/src/nsNavHistory.cpp index 1d8c0743bfc6..b03a78778c9e 100644 --- a/toolkit/components/places/src/nsNavHistory.cpp +++ b/toolkit/components/places/src/nsNavHistory.cpp @@ -3349,10 +3349,11 @@ nsNavHistory::PerformVacuumIfIdle() NS_ENSURE_SUCCESS(rv, rv); } else { - // if our database was created before incremental vacuuming - // do a full vacuum on idle +#if 0 + // Currently commented out because compression is very slow rv = mDBConn->ExecuteSimpleSQL(NS_LITERAL_CSTRING("VACUUM;")); NS_ENSURE_SUCCESS(rv, rv); +#endif } } return NS_OK;