diff options
Diffstat (limited to 'src/couchdb/couch_db.hrl')
-rw-r--r-- | src/couchdb/couch_db.hrl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/couchdb/couch_db.hrl b/src/couchdb/couch_db.hrl index 5dbbcee8..830f2f9a 100644 --- a/src/couchdb/couch_db.hrl +++ b/src/couchdb/couch_db.hrl @@ -154,7 +154,8 @@ }). -record(group, - {sig=nil, + {type=view, % can also be slow_view + sig=nil, db=nil, fd=nil, name, @@ -162,10 +163,9 @@ views, id_btree=nil, current_seq=0, - committed_seq=0, purge_seq=0, query_server=nil, - commit_fun + waiting_delayed_commit=nil }). -record(view, |