Don't cache SQL statements during initialization

From executeSQLFile()
This commit is contained in:
Dan Stillman 2021-05-12 03:33:47 -04:00
parent d2b36c4218
commit f925f0e402

View file

@ -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 });
}
};