summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2018-08-06 19:21:49 +0100
committerRobert Newson <rnewson@apache.org>2018-08-20 20:57:12 +0100
commitf51279a55379f307ccb50217e71005d1302e2c1b (patch)
tree60b23c57eeca6ce195979917a1c54115180dde04
parent4035da9b63fe54a6954d30f281adf11161b2c9d0 (diff)
downloadcouchdb-f51279a55379f307ccb50217e71005d1302e2c1b.tar.gz
validate new partition arguments
-rw-r--r--src/couch_mrview/src/couch_mrview_util.erl11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/couch_mrview/src/couch_mrview_util.erl b/src/couch_mrview/src/couch_mrview_util.erl
index a63701f8f..592bfb518 100644
--- a/src/couch_mrview/src/couch_mrview_util.erl
+++ b/src/couch_mrview/src/couch_mrview_util.erl
@@ -577,6 +577,17 @@ validate_args(Args) ->
_ -> mrverror(<<"Invalid value for `sorted`.">>)
end,
+ case {get_extra(Args, partitioned, false), get_extra(Args, partition)} of
+ {true, undefined} ->
+ mrverror(<<"`partition` parameter is mandatory for queries to this view.">>);
+ {true, _Partition} ->
+ ok;
+ {false, undefined} ->
+ ok;
+ {false, _Partition} ->
+ mrverror(<<"`partition` parameter is not supported in this view.">>)
+ end,
+
Args#mrargs{
start_key_docid=SKDocId,
end_key_docid=EKDocId,