This is an automated email from the ASF dual-hosted git repository. davisp pushed a commit to branch COUCHDB-3287-pluggable-storage-engines in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit f2ac2b80649766a2e9a227f98f91fe98828f0a6d Author: Paul J. Davis <[email protected]> AuthorDate: Fri May 12 16:06:07 2017 -0500 ss - implement pse --- src/couch/src/couch_db.erl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/couch/src/couch_db.erl b/src/couch/src/couch_db.erl index 70e4c32..5018d25 100644 --- a/src/couch/src/couch_db.erl +++ b/src/couch/src/couch_db.erl @@ -411,8 +411,7 @@ get_del_doc_count(Db) -> {ok, couch_db_engine:get_del_doc_count(Db)}. get_doc_count(Db) -> - {ok, Reds} = couch_btree:full_reduce(Db#db.id_tree), - {ok, element(1, Reds)}. + {ok, couch_db_engine:get_doc_count(Db)}. get_uuid(#db{}=Db) -> couch_db_engine:get_uuid(Db). -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
