diff options
Diffstat (limited to 'src/couchdb/couch_db.hrl')
-rw-r--r-- | src/couchdb/couch_db.hrl | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/src/couchdb/couch_db.hrl b/src/couchdb/couch_db.hrl index 78087d86..b23fd18d 100644 --- a/src/couchdb/couch_db.hrl +++ b/src/couchdb/couch_db.hrl @@ -146,18 +146,22 @@ -record(view_query_args, { start_key = nil, end_key = {}, - limit = 10000000000, % a huge huge default number. Picked so we don't have - % to do different logic for when there is no limit - stale = false, - direction = fwd, start_docid = nil, end_docid = {}, + + direction = fwd, + inclusive_end=true, % aka a closed-interval + + limit = 10000000000, % Huge number to simplify logic skip = 0, + group_level = 0, - reduce = true, - req_reduce = false, - inclusive_end=true, % aka a closed-interval - include_docs = false + + view_type = nil, + include_docs = false, + stale = false, + multi_get = false, + ignore = false }). -record(view_fold_helper_funs, { |