Fix error from f3b461ae1d when no duplicate items found

This commit is contained in:
Dan Stillman 2017-06-20 05:58:12 -04:00
parent 041f79379c
commit 3259b63081

View File

@ -56,17 +56,22 @@ Zotero.Duplicates.prototype.getSearchObject = async function () {
var sql = `CREATE TEMPORARY TABLE ${table} (id INTEGER PRIMARY KEY)`; var sql = `CREATE TEMPORARY TABLE ${table} (id INTEGER PRIMARY KEY)`;
await Zotero.DB.queryAsync(sql); await Zotero.DB.queryAsync(sql);
Zotero.debug("Inserting rows into temp table"); if (ids.length) {
sql = `INSERT INTO ${table} VALUES `; Zotero.debug("Inserting rows into temp table");
await Zotero.Utilities.Internal.forEachChunkAsync( sql = `INSERT INTO ${table} VALUES `;
ids, await Zotero.Utilities.Internal.forEachChunkAsync(
Zotero.DB.MAX_BOUND_PARAMETERS, ids,
async function (chunk) { Zotero.DB.MAX_BOUND_PARAMETERS,
let idStr = '(' + chunk.join('), (') + ')'; async function (chunk) {
await Zotero.DB.queryAsync(sql + idStr, false, { debug: false }); let idStr = '(' + chunk.join('), (') + ')';
} await Zotero.DB.queryAsync(sql + idStr, false, { debug: false });
); }
Zotero.debug("Done"); );
Zotero.debug("Done");
}
else {
Zotero.debug("No duplicates found");
}
var s = new Zotero.Search; var s = new Zotero.Search;
s.libraryID = this._libraryID; s.libraryID = this._libraryID;