summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAdam Kocoloski <adam@cloudant.com>2010-06-01 23:03:56 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-06-01 23:04:20 -0400
commitb12bcd244bdf743de8c91808cf03417b1ea9dde2 (patch)
treee1383862b4820bdc7e4e8ec8224cc2d5d9cb4d97 /include
parent03caa800e099bf5d0425f22f64af76bdd24a8754 (diff)
all_docs resource w/o keylist, BugzID 10218
Diffstat (limited to 'include')
-rw-r--r--include/fabric.hrl16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/fabric.hrl b/include/fabric.hrl
index 43c589e0..31e4336c 100644
--- a/include/fabric.hrl
+++ b/include/fabric.hrl
@@ -9,3 +9,19 @@
-endif.
-include_lib("eunit/include/eunit.hrl").
+
+-record(collector, {
+ query_args,
+ callback,
+ counters,
+ buffer_size,
+ blocked = [],
+ total_rows = 0,
+ offset = 0,
+ rows = [],
+ skip,
+ limit,
+ user_acc
+}).
+
+-record(view_row, {key, id, value, doc, worker}).