From b2284f2404dfb678f9abde2d1354487791f744c6 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sun, 15 Jul 2007 18:31:59 +0000 Subject: [PATCH] Don't do a VACUUM in the middle of a transaction --- chrome/content/zotero/xpcom/schema.js | 1 - 1 file changed, 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/schema.js b/chrome/content/zotero/xpcom/schema.js index 6091c9fa2..58512878f 100644 --- a/chrome/content/zotero/xpcom/schema.js +++ b/chrome/content/zotero/xpcom/schema.js @@ -1120,7 +1120,6 @@ Zotero.Schema = new function(){ Zotero.DB.query("ALTER TABLE fulltextItems ADD indexedChars INT"); Zotero.DB.query("ALTER TABLE fulltextItems ADD totalChars INT"); Zotero.DB.query("DELETE FROM version WHERE schema='fulltext'"); - Zotero.DB.query("VACUUM"); } }