Comparing version 0.4.1 to 0.4.2
@@ -468,5 +468,12 @@ var safe = require('safe'); | ||
var sub = this._args[i].split(f); | ||
d.push(sub); | ||
if (this._args[i].length>0) | ||
o.push(this._args[i]); | ||
if (this._args[i]._args.length>0) { | ||
_.each(this._args[i]._args, function (a) { | ||
o.push(a); | ||
}); | ||
} | ||
if (sub._args.length>0) { | ||
_.each(sub._args, function (a) { | ||
d.push(a); | ||
}); | ||
} | ||
} else { | ||
@@ -473,0 +480,0 @@ var ex = this._args[i]._ex(f); |
@@ -982,2 +982,3 @@ var safe = require('safe'); | ||
} | ||
// if possible indexes found split the query and process | ||
@@ -984,0 +985,0 @@ // indexes separately |
{ | ||
"author": "PushOk Software <support@pushok.com>", | ||
"name": "tingodb", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"repository": { | ||
@@ -6,0 +6,0 @@ "type": "git", |
123446
3998