From 3b27d154b2f36ff7a7514a6b0dbd29dd3715193b Mon Sep 17 00:00:00 2001 From: John Christopher Anderson Date: Tue, 16 Dec 2008 21:19:03 +0000 Subject: fix COUCHDB-177. thanks Paul Carey and Paul Davis git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@727156 13f79535-47bb-0310-9956-ffa450edef68 --- THANKS | 1 + share/www/script/couch_tests.js | 11 ++++++++++- src/couchdb/couch_httpd_view.erl | 6 +++--- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/THANKS b/THANKS index 4a3b66f3..532bc107 100644 --- a/THANKS +++ b/THANKS @@ -10,6 +10,7 @@ Some of these people are: * William Beh * Antony Blakey * Yoan Blanc + * Paul Carey * Benoit Chesneau * Paul Joseph Davis * Michael Gottesman diff --git a/share/www/script/couch_tests.js b/share/www/script/couch_tests.js index 78b0c302..0ad6eee0 100644 --- a/share/www/script/couch_tests.js +++ b/share/www/script/couch_tests.js @@ -1344,6 +1344,15 @@ var tests = { } T(db.save(designDoc).ok); + // Test that missing keys work too + var keys = [101,30,15,37,50] + var reduce = db.view("test/summate",{group:true},keys).rows; + T(reduce.length == keys.length-1); // 101 is missing + for(var i=0; i send_chunk(Resp, "{\"rows\":["), lists:foldl( fun(Key, AccSeparator) -> - {ok, _} = couch_view:fold_reduce(View, Dir, {Key, StartDocId}, + {ok, {NewAcc, _, _}} = couch_view:fold_reduce(View, Dir, {Key, StartDocId}, {Key, EndDocId}, GroupRowsFun, RespFun, {AccSeparator, Skip, Count}), - "," % Switch to comma + NewAcc % Switch to comma end, "", Keys), % Start with no comma send_chunk(Resp, "]}"), @@ -456,4 +456,4 @@ finish_view_fold(Req, TotalRows, FoldResult) -> end_json_response(Resp); Error -> throw(Error) - end. \ No newline at end of file + end. -- cgit v1.2.3