From f925f0e402ebe25e567234674bce2802a70d4bed Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Wed, 12 May 2021 03:33:47 -0400 Subject: [PATCH] Don't cache SQL statements during initialization From executeSQLFile() --- chrome/content/zotero/xpcom/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js index e11a7aca86..2797988b56 100644 --- a/chrome/content/zotero/xpcom/db.js +++ b/chrome/content/zotero/xpcom/db.js @@ -859,7 +859,7 @@ Zotero.DBConnection.prototype.executeSQLFile = async function (sql) { var statements = this.parseSQLFile(sql); var statement; while (statement = statements.shift()) { - await this.queryAsync(statement); + await this.queryAsync(statement, false, { noCache: true }); } };