Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/parallel/test-sqlite-virtual-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ suite('Database.prototype.createModule()', () => {
test('closes the iterator when a filter is reapplied to the cursor', () => {
// A correlated subquery re-invokes xFilter on the same cursor per outer
// row, abandoning the previous iterator; its `finally` must still run.
const db = new DatabaseSync(':memory:');
const db = new Database(':memory:');
const cleanedUp = [];

db.createModule('refilter_cleanup', {
Expand Down
Loading