diff options
Diffstat (limited to 'src/couchdb/couch_db.hrl')
-rw-r--r-- | src/couchdb/couch_db.hrl | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/couchdb/couch_db.hrl b/src/couchdb/couch_db.hrl index 083468dc..eb449ab7 100644 --- a/src/couchdb/couch_db.hrl +++ b/src/couchdb/couch_db.hrl @@ -143,7 +143,6 @@ 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 - % limit stale = false, direction = fwd, start_docid = nil, @@ -154,6 +153,20 @@ include_docs = false }). +-record(view_fold_helper_funs, { + reduce_count, + passed_end, + start_response, + send_row +}). + +-record(extern_resp_args, { + code = 200, + data = <<>>, + ctype = "application/json", + headers = [] +}). + -record(group, {type=view, % can also be slow_view sig=nil, |