RESOLVED CONFIGURATION CHANGED178380
IndexedDB index cursor stops when updating an object
https://bugs.webkit.org/show_bug.cgi?id=178380
Summary IndexedDB index cursor stops when updating an object
David Fahlander
Reported 2017-10-17 00:41:53 PDT
Steps to reproduce: 1. Opening a cursor on an index (IDBIndex.prototype.openCursor()) 2. req.onsuccess: call cursor.update() or store.put() 3. Next req.onsuccess indicates end of iteration (req.result is falsy) Expected behavior: ... 3. Next req.onsuccess lands on the next object matched in the index. Note: There seems not to be an issue for IDBObjectStore.prototype.openCursor(), it's just IDBIndex that fails. Repro: http://dexie.org/test/dexie-issue-594/index.html The repro should show: 3 3 But with Safari 10 or 11, it shows 3 1 The reason the last digit is 1, is because a call to Dexie.Collection.modify() will stop after first match, as it calls cursor.update() on it.
Attachments
David Fahlander
Comment 1 2017-10-17 00:43:22 PDT
Radar WebKit Bug Importer
Comment 2 2022-02-01 11:28:07 PST
Brent Fulgham
Comment 3 2022-02-01 11:31:31 PST
This appears to be working properly in current Safari/WebKit.
Note You need to log in before you can comment on or make changes to this bug.