fix: numeric strings in mongo (#11498)

This commit is contained in:
Barış Soner Uşaklı
2023-04-19 17:16:45 -04:00
committed by GitHub
parent f8ae6ef7ef
commit 6bed65dde6
2 changed files with 9 additions and 3 deletions

View File

@@ -452,6 +452,12 @@ describe('Sorted Set methods', () => {
});
});
});
it('should return elements if min/max are numeric strings', async () => {
await db.sortedSetAdd('zsetstringminmax', [1, 2, 3, 4, 5], ['value1', 'value2', 'value3', 'value4', 'value5']);
const results = await db.getSortedSetRevRangeByScore('zsetstringminmax', 0, -1, '3', '3');
assert.deepStrictEqual(results, ['value3']);
});
});
describe('getSortedSetRevRangeByScore()', () => {