Commit 8c2faa19 authored by Romain Courteaud's avatar Romain Courteaud

QueryStorage: include_docs is not yet implemented.

parent 49dd5aa7
...@@ -45,7 +45,6 @@ ...@@ -45,7 +45,6 @@
QueryStorage.prototype.hasCapacity = function (name) { QueryStorage.prototype.hasCapacity = function (name) {
var this_storage_capacity_list = ["limit", var this_storage_capacity_list = ["limit",
"include",
"sort", "sort",
"select", "select",
"query"]; "query"];
......
...@@ -426,7 +426,6 @@ ...@@ -426,7 +426,6 @@
}); });
jio.allDocs({ jio.allDocs({
include_docs: false,
sort_on: [["title", "ascending"]], sort_on: [["title", "ascending"]],
limit: [5], limit: [5],
select_list: ["title", "id"], select_list: ["title", "id"],
...@@ -495,7 +494,6 @@ ...@@ -495,7 +494,6 @@
}); });
jio.allDocs({ jio.allDocs({
include_docs: false,
sort_on: [["title", "ascending"]], sort_on: [["title", "ascending"]],
limit: [0, 5], limit: [0, 5],
select_list: ["title", "id"], select_list: ["title", "id"],
...@@ -571,7 +569,6 @@ ...@@ -571,7 +569,6 @@
}); });
jio.allDocs({ jio.allDocs({
include_docs: false,
sort_on: [["title", "ascending"]], sort_on: [["title", "ascending"]],
limit: [0, 5], limit: [0, 5],
select_list: ["title", "id"], select_list: ["title", "id"],
...@@ -647,7 +644,6 @@ ...@@ -647,7 +644,6 @@
}); });
jio.allDocs({ jio.allDocs({
include_docs: false,
sort_on: [["title", "ascending"]], sort_on: [["title", "ascending"]],
limit: [0, 5], limit: [0, 5],
select_list: ["title", "id"], select_list: ["title", "id"],
...@@ -723,7 +719,6 @@ ...@@ -723,7 +719,6 @@
}); });
jio.allDocs({ jio.allDocs({
include_docs: false,
sort_on: [["title", "ascending"]], sort_on: [["title", "ascending"]],
limit: [0, 5], limit: [0, 5],
select_list: ["title", "id"], select_list: ["title", "id"],
...@@ -800,7 +795,6 @@ ...@@ -800,7 +795,6 @@
}); });
jio.allDocs({ jio.allDocs({
include_docs: false,
sort_on: [["title", "ascending"]], sort_on: [["title", "ascending"]],
limit: [0, 5], limit: [0, 5],
select_list: ["title", "id"], select_list: ["title", "id"],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment