You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ra...@apache.org on 2011/11/09 11:07:20 UTC

[4/5] git commit: export couch_db:get_full_doc_info(s)

export couch_db:get_full_doc_info(s)

It's useful to export these to keep the btree access well
encapsulated and still provide fast access to the full_doc_info
record.


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/c2c8d638
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/c2c8d638
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/c2c8d638

Branch: refs/heads/master
Commit: c2c8d638c22550723e8fd23511bf3aa18d2e624f
Parents: 6213d06
Author: Randall Leeds <ra...@apache.org>
Authored: Wed Nov 9 01:31:05 2011 -0800
Committer: Randall Leeds <ra...@apache.org>
Committed: Wed Nov 9 01:41:20 2011 -0800

----------------------------------------------------------------------
 src/couchdb/couch_db.erl |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/c2c8d638/src/couchdb/couch_db.erl
----------------------------------------------------------------------
diff --git a/src/couchdb/couch_db.erl b/src/couchdb/couch_db.erl
index 325689f..ec1dbd8 100644
--- a/src/couchdb/couch_db.erl
+++ b/src/couchdb/couch_db.erl
@@ -17,7 +17,8 @@
 -export([start_compact/1, cancel_compact/1]).
 -export([open_ref_counted/2,is_idle/1,monitor/1,count_changes_since/2]).
 -export([update_doc/3,update_doc/4,update_docs/4,update_docs/2,update_docs/3,delete_doc/3]).
--export([get_doc_info/2,open_doc/2,open_doc/3,open_doc_revs/4]).
+-export([get_doc_info/2,get_full_doc_info/2,get_full_doc_infos/2]).
+-export([open_doc/2,open_doc/3,open_doc_revs/4]).
 -export([set_revs_limit/2,get_revs_limit/1]).
 -export([get_missing_revs/2,name/1,get_update_seq/1,get_committed_update_seq/1]).
 -export([enum_docs/4,enum_docs_since/5]).