greenais opened a new issue #1565: Values in query to complex key view seem to be ignored URL: https://github.com/apache/couchdb/issues/1565 I query view with complex (array) keys with intention to perform partial search, but get wrong results. Probably I'm doing something wrong, but I can't figure out what it is - according to docs it should work. ## Expected Behavior Query should return zero rows ## Current Behavior when I fire: `{{server}}:{{port}}/search/_design/search/_view/firstLast?startkey=["Mar","Fru","female","Argentina","Buenos Aires"]&endkey=["Mar\u9999","Fru\u9999","female","Argentina","Buenos Aires"]` I get: ``` "total_rows": 18, "offset": 4, "rows": [ { "id": "chicho", "key": [ "Mariano", "Frumboli", "male", "Argentina", "Buenos Aires" ], "value": null } ] ``` which is wrong since index record obviously contans "male". Seems like third and following values in startkey/endkey are being ignored? I tried to replace \u9999 with z etc but with avail - same wrong results ## Your Environment * Version used: 2.1.1 * Postman * Windows 8.1
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
