Specify collection length

This commit is contained in:
Anatoliy Chakkaev 2012-10-13 19:19:53 +04:00
parent a31a10a5ae
commit f59cf0ddbf
3 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ language: node_js
node_js: node_js:
- 0.4.12 - 0.4.12
- 0.6 - 0.6
- 0.8.9 - 0.8.11
services: services:
- mongodb - mongodb
- redis-server - redis-server

View File

@ -340,6 +340,7 @@ AbstractClass.all = function all(params, cb) {
if (data && data.countBeforeLimit) { if (data && data.countBeforeLimit) {
collection.countBeforeLimit = data.countBeforeLimit; collection.countBeforeLimit = data.countBeforeLimit;
} }
collection.length = data.length;
cb(err, collection); cb(err, collection);
} }
else else

View File

@ -420,7 +420,6 @@ function validationFailed(inst, v, cb) {
} }
function skipValidation(inst, conf, kind) { function skipValidation(inst, conf, kind) {
console.log(conf, kind, inst.hasOwnProperty(conf[kind]), inst[conf[kind]]);
var doValidate = true; var doValidate = true;
if (typeof conf[kind] === 'function') { if (typeof conf[kind] === 'function') {
doValidate = conf[kind].call(inst); doValidate = conf[kind].call(inst);