From 37541bbf91d09ad0200f2c26c7a3f79fdf050801 Mon Sep 17 00:00:00 2001 From: Paul Joseph Davis Date: Sat, 25 Apr 2009 18:29:15 +0000 Subject: Resolves COUCHDB-331 - Allow reduce=true&include_docs=false git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@768573 13f79535-47bb-0310-9956-ffa450edef68 --- share/www/script/test/view_include_docs.js | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'share/www/script/test') diff --git a/share/www/script/test/view_include_docs.js b/share/www/script/test/view_include_docs.js index 2c47b696..4d19bf55 100644 --- a/share/www/script/test/view_include_docs.js +++ b/share/www/script/test/view_include_docs.js @@ -79,6 +79,11 @@ couchTests.view_include_docs = function(debug) { resp = db.view('test/summate', {reduce: false, include_docs: true}); T(resp.rows.length == 100); + // Not an error with include_docs=false&reduce=true + resp = db.view('test/summate', {reduce: true, include_docs: false}); + T(resp.rows.length == 1); + T(resp.rows[0].value == 4950); + // Check emitted _rev controls things resp = db.allDocs({include_docs: true}, ["0"]); var before = resp.rows[0].doc; -- cgit v1.2.3