@ -49,15 +49,15 @@ module.exports = function (module) {
}
if (min !== '-inf') {
query.score = { $gte: min };
query.score = { $gte: parseFloat(min) };
if (max !== '+inf') {
query.score = query.score || {};
query.score.$lte = max;
query.score.$lte = parseFloat(max);
if (max === min) {
query.score = max;
query.score = parseFloat(max);
const fields = { _id: 0, _key: 0 };
@ -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()', () => {