endkey ignored when inclusive_end=false for reduce view calls
-------------------------------------------------------------
Key: COUCHDB-1047
URL: https://issues.apache.org/jira/browse/COUCHDB-1047
Project: CouchDB
Issue Type: Bug
Affects Versions: 1.0.2, 1.0.1, 1.0
Reporter: Robert Newson
Assignee: Robert Newson
Fix For: 1.0.3, 1.1
curl
'localhost:5984/db1/_design/cl-test/_view/foo?group=true&descending=false&startkey=4&endkey=6&inclusive_end=true'
{"rows":[
{"key":4,"value":18},
{"key":5,"value":18},
{"key":6,"value":17}
]}
curl
'localhost:5984/db1/_design/cl-test/_view/foo?group=true&descending=false&startkey=4&endkey=6&inclusive_end=false'
{"rows":[
{"key":4,"value":18},
{"key":5,"value":18},
{"key":6,"value":17},
{"key":7,"value":17},
{"key":8,"value":17},
{"key":9,"value":17}
]}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.