diff options
author | John Christopher Anderson <jchris@apache.org> | 2010-02-26 01:11:02 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2010-02-26 01:11:02 +0000 |
commit | 2bdd75901fba402068d08e316a3ac32249307e27 (patch) | |
tree | 6635fd73f4d3c299f19be391664d7c2b056263c2 /src/couchdb/couch_db.hrl | |
parent | 5fb1e46f115e91f2788d2ac8649106667952ddfe (diff) |
fdmananas patch for filtered replication via COUCHDB-673
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@916518 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_db.hrl')
-rw-r--r-- | src/couchdb/couch_db.hrl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/couchdb/couch_db.hrl b/src/couchdb/couch_db.hrl index f74bade7..bb6b4f73 100644 --- a/src/couchdb/couch_db.hrl +++ b/src/couchdb/couch_db.hrl @@ -264,3 +264,15 @@ % small value used in revision trees to indicate the revision isn't stored -define(REV_MISSING, []). + +-record(changes_args, { + feed = "normal", + dir = fwd, + since = 0, + limit = 1000000000000000, + style = main_only, + heartbeat, + timeout, + filter = "", + include_docs = false +}). |