Skip to content

Commit e4a9cf2

Browse files
authored
Merge pull request #41 from StratoKit/sort-falsyBool-with-cursor
fix bug when sorting falsyBool + cursor
2 parents 08138f8 + 53f3d99 commit e4a9cf2

File tree

3 files changed

+59
-4
lines changed

3 files changed

+59
-4
lines changed

src/EventSourcingDB/EventSourcingDB.js

-1
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,6 @@ class EventSourcingDB extends EventEmitter {
697697
}
698698
}
699699
return lastV
700-
/* eslint-enable no-await-in-loop */
701700
}
702701

703702
async _preprocessor(cache, event, isMainEvent) {

src/JsonModel/JM-search.test.js

+50
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,56 @@ describe('search cursor', () => {
252252
total: 10,
253253
})
254254
})
255+
256+
test('search with sort, cursor, limit - limit < total, some sorted values = falsyBool', async () => {
257+
const totalCount = await m.count()
258+
const falsyBoolFalseCount = await m.count({x2: false})
259+
const falsyBoolTrueCount = await m.count({x2: true})
260+
261+
const pageCount = falsyBoolTrueCount + 1
262+
// to make sure there are results on page2
263+
expect(falsyBoolFalseCount - pageCount).toBeTruthy()
264+
265+
const searchOptions = {
266+
// true first
267+
sort: {x2: -1},
268+
limit: pageCount,
269+
cols: ['id', 'x2'],
270+
}
271+
const page1 = await m.search({}, searchOptions)
272+
273+
expect(page1).toEqual({
274+
cursor: '!_N~1',
275+
items: [
276+
{id: 2, x2: 1},
277+
{id: 4, x2: 1},
278+
{id: 6, x2: 1},
279+
{id: 8, x2: 1},
280+
{id: 10, x2: 1},
281+
{id: 12, x2: 1},
282+
{id: 14, x2: 1},
283+
{id: 1},
284+
],
285+
prevCursor: '!!1~2',
286+
total: 14,
287+
})
288+
289+
const page2Count = await m.count(
290+
{},
291+
{...searchOptions, cursor: page1.cursor}
292+
)
293+
const remainingAfterPage1 = totalCount - pageCount
294+
expect(page2Count).toEqual(
295+
remainingAfterPage1 < pageCount ? remainingAfterPage1 : pageCount
296+
)
297+
const page2 = await m.search({}, {...searchOptions, cursor: page1.cursor})
298+
expect(page2).toEqual({
299+
cursor: undefined,
300+
items: [{id: 3}, {id: 5}, {id: 7}, {id: 9}, {id: 11}, {id: 13}],
301+
prevCursor: '!!_N~3',
302+
total: 14,
303+
})
304+
})
255305
})
256306

257307
test('search itemsOnly', async () => {

src/JsonModel/JsonModel.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -394,9 +394,15 @@ class JsonModelImpl {
394394
cursorQ = `${cursorColAliases[len]}${getDir(len)}?`
395395
cursorArgs = [cursorVals[len]] // ID added at first
396396
for (let i = len - 1; i >= 0; i--) {
397-
cursorQ =
398-
`(${cursorColAliases[i]}${getDir(i)}=?` +
399-
` AND (${cursorColAliases[i]}!=? OR ${cursorQ}))`
397+
const colAlias = cursorColAliases[i]
398+
const isFalsyBool = Object.values(this.columns).find(
399+
c => c.alias === colAlias
400+
).falsyBool
401+
cursorQ = isFalsyBool
402+
? `(COALESCE(${colAlias}, 0)${getDir(i)}=COALESCE(?, 0)` +
403+
` AND (COALESCE(${colAlias},0)!=COALESCE(?, 0) OR ${cursorQ}))`
404+
: `(${cursorColAliases[i]}${getDir(i)}=?` +
405+
` AND (${cursorColAliases[i]}!=? OR ${cursorQ}))`
400406
const val = cursorVals[i]
401407
cursorArgs.unshift(val, val)
402408
}

0 commit comments

Comments
 (0)