Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Security Level: Public
-
Labels:None
Description
viewopts.c appears to be missing include_docs as a valid parameter for the array values that get passed in for a view.
Activity
- All
- Comments
- Work Log
- History
- Activity
- Gerrit Reviews
# git diff
diff --git a/viewopts.c b/viewopts.c
index 612559d..4b9ce0f 100644
--- a/viewopts.c
+++ b/viewopts.c
@@ -54,6 +54,7 @@ static view_param Recognized_View_Params[] = {
{ "startkey", jval_param_handler },
{ "startkey_docid", string_param_handler },
{ "debug", bool_param_handler },
+ { "include_docs", bool_param_handler },
{ NULL, NULL }
};
And it seems to work just fine.