Hello,

I'm having an issue where views with composite keys are not inclusive of the
endkey, even with inclusive_end specified as true.
This is preventing me from correctly selecting a group of documents as per
the "Linked documents" section on the Http view API wiki page (
http://wiki.apache.org/couchdb/Introduction_to_CouchDB_views)

I'm running CouchDb 1.0.1. Example of the issue I'm seeing:

composite_key_view?startkey=["AA"]&inclusive_end=true
{"id":"1","key":["AA",0],"value":null},
{"id":"1","key":["AA",1],"value":{"_id":"4"}},
{"id":"2","key":["BB",0],"value":null}

composite_key_view?startkey=["AA"]&endkey=["AA"]&inclusive_end=true
No results

composite_key_view?startkey=["AA"]&endkey=["BB"]&inclusive_end=true
{"id":"1","key":["AA",0],"value":null},
{"id":"1","key":["AA",1],"value":{"_id":"4"}}

The last example works, but requires me to know what comes after AA in the
results, and you'd think inclusive_end would make BB show up as well.
Has anyone had this problem? Any ideas on how to solve it?

Thanks!

Reply via email to