@ -26,7 +26,7 @@ module.exports = function (module) {
async function getSortedSetUnion(params) {
if (!Array.isArray(params.sets) || !params.sets.length) {
return;
return [];
}
let limit = params.stop - params.start + 1;
if (limit <= 0) {
@ -32,6 +32,9 @@ SELECT COUNT(DISTINCT z."value") c
const { sets } = params;
if (!sets || !sets.length) {
const start = params.hasOwnProperty('start') ? params.start : 0;
const stop = params.hasOwnProperty('stop') ? params.stop : -1;
let weights = params.weights || [];
@ -287,7 +287,7 @@ module.exports = function (Topics) {
Topics.getTagData = async function (tags) {
if (!tags.length) {
if (!tags || !tags.length) {
tags.forEach((tag) => {
@ -996,6 +996,11 @@ describe('Sorted Set methods', () => {
done();
});
it('should return empty array if sets is empty', async () => {
const result = await db.getSortedSetRevUnion({ sets: [], start: 0, stop: -1 });
assert.deepStrictEqual(result, []);
describe('sortedSetIncrBy()', () => {