I have defined the following view:

{ "_id":"_design/test",
  "language":"javascript",
  "views":
  { "test": 
    { "map": "function(doc) { for (var k in doc.data) emit(doc.data[k],null);}",
      "options": {"collation":"raw"}
    }
  }
}

When querying the view without any parameters, I get the expected result (sorted as "AB...ab" instead of "aAbB" because I specified a raw collation):

http://localhost:5985/test/_design/test/_view/test

{"total_rows":13,"offset":0,"rows":[
  {"id":"-","key":"A","value":null},
  {"id":"-","key":"B","value":null},
  {"id":"-","key":"C","value":null},
  {"id":"-","key":"D","value":null},
  {"id":"-","key":"E","value":null},
  {"id":"-","key":"F","value":null},
  {"id":"-","key":"a","value":null},
  {"id":"-","key":"b","value":null},
  {"id":"-","key":"c","value":null},
  {"id":"-","key":"d","value":null},
  {"id":"-","key":"e","value":null},
  {"id":"-","key":"f","value":null},
  {"id":"-","key":"g","value":null}
]}

I then use startkey and endkey to ask for the range between B and a, and I expect to receive keys BCDEFa, but instead I receive the following error message:

http://localhost:5985/test/_design/test/_view/test?startkey=%22B%22&endkey=%22a%22

{ "error": "query_parse_error",
  "reason": "No rows can match your key range, reverse your start_key and 
             end_key or set descending=true"
}

Why does it say that no rows can match the key range, when rows B,C,D,E,F and a will match ?

EDIT: I have a single document (revision and ID omitted):

{ "_id": "-", 
  "_rev": "-", 
  "data": [ "A", "B", "C", "D", "E", "F", "a", "b", "c", "d", "e", "f", "g" ] 
}
link|improve this question

What version of CouchDB are you running? I do not get that error on v1.0.1 – Dominic Barnes Jul 1 '11 at 15:48
I'm using version 1.1 – Victor Nicollet Jul 1 '11 at 20:11
1  
Can you include some sample documents as well? – Dominic Barnes Jul 1 '11 at 20:15
Can you include the command you use for querying? Maybe there is some quoting problem. This is the most typical error in this cases. – Marcello Nuccio Jul 2 '11 at 9:04
1  
This may indeed be a proper CouchDB bug. It seems reasonable that the code to sort views is different from the input-validation code for HTTP queries. Perhaps the latter did not get the {"collation":"raw"} memo. – JasonSmith Jul 4 '11 at 2:26
show 3 more comments
feedback

2 Answers

I can confirm that I experience the same behaviour in version 1.1 on Ubuntu 10.04.

To elaborate:

curl http://localhost:5984/test/_design/test/_view/view?startkey=%22B%22\&endkey=%22a%22

returns the error

{"error":"query_parse_error","reason":"No rows can match your key range, reverse your start_key and end_key or set descending=true"}

while

curl http://localhost:5984/test/_design/test/_view/view?startkey=%22B%22\&endkey=%22D%22

gives

{"total_rows":12,"offset":1,"rows":[

{"id":"stuff","key":"B","value":null}, {"id":"stuff","key":"C","value":null}, {"id":"stuff","key":"D","value":null} ]}

So quoting issues don't look to be the problem.

I am using a single document:

{

"_id": "stuff", "_rev": "2-0507028fcab427a1b28ed6b3d4a6c05e", "data": [ "A", "B", "C", "D", "E", "F", "a", "b", "c", "d", "e", "f" ] }

link|improve this answer
and @Victor, I suggest you post this to JIRA, or at least get the ball rolling in the users mailing list. Based on the description, it seems likely to be a bug. If you would be nice enough to put it in JIRA, doubtless a developer will be nice enough to fix it for you. – JasonSmith Jul 5 '11 at 10:42
feedback
up vote 0 down vote accepted

After looking again through wads of documentation and asking around, it seems that this behavior is unintended. I have submitted a JIRA bug for this. I currently have no general-purpose workaround to suggest, though I have been able to work around the problem in my specific situation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.