Fabian created COUCHDB-3254:
-------------------------------
Summary: Rewrite function breaks multiple parameters
Key: COUCHDB-3254
URL: https://issues.apache.org/jira/browse/COUCHDB-3254
Project: CouchDB
Issue Type: Bug
Components: Database Core, HTTP Interface
Reporter: Fabian
Using a rewrite rule on a view with multiple parameters doesn't work as the
resulting URL seems to be missing ampersands between the parameters. When using
the _design document below and a URL like
http://localhost:5984/database_name/_design/test/_rewrite/views/_view/view_name
the following error occurs:
bq.{"error":"query_parse_error","reason":"Invalid boolean parameter:
\"truekey=null\""}
Minimal _design document:
{
"_id": "_design/test",
"language": "javascript",
"rewrites": "function(req) {return {path:
'../'+req.path.slice(4).join('/'),query: {'reduce': 'true','key': 'null'}}};"
}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)