Don't cache SQL statements during initialization
From executeSQLFile()
This commit is contained in:
parent
d2b36c4218
commit
f925f0e402
1 changed files with 1 additions and 1 deletions
|
@ -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 });
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue