fix -inf +inf

added test for -inf +inf
v1.18.x
Barış Soner Uşaklı 10 years ago
parent 07572b188b
commit ea9fccbf2a

@ -204,14 +204,17 @@ module.exports = function(db, module) {
if (!key) {
return callback();
}
var scoreQuery = {};
var query = {_key: key};
if (min !== '-inf') {
scoreQuery.$gte = min;
query.score = {$gte: min};
}
if (max !== '+inf') {
scoreQuery.$lte = max;
query.score = query.score || {};
query.score.$lte = max;
}
db.collection('objects').count({_key: key, score: scoreQuery}, function(err, count) {
db.collection('objects').count(query, function(err, count) {
callback(err, count ? count : 0);
});
};

@ -172,6 +172,13 @@ describe('Sorted Set methods', function() {
assert.equal(count, 2);
done();
});
db.sortedSetCount('sortedSetTest1', '-inf', '+inf', function(err, count) {
assert.equal(err, null);
assert.equal(arguments.length, 2);
assert.equal(count, 3);
done();
});
});
});

Loading…
Cancel
Save