You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ji...@apache.org on 2018/08/24 02:03:31 UTC

[couchdb] branch 1573-export-all-for-pse-test updated (a5686f8 -> b648bbe)

This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a change to branch 1573-export-all-for-pse-test
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    omit a5686f8  Fix make warning from cpse_test_purge_seqs.erl
     add d2d2261  Fix builtin _sum reduce function
     new b648bbe  Fix make warning from cpse_test_purge_seqs.erl

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (a5686f8)
            \
             N -- N -- N   refs/heads/1573-export-all-for-pse-test (b648bbe)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/couch/src/couch_query_servers.erl        | 27 +++++++-
 src/couch/test/couch_query_servers_tests.erl | 95 ++++++++++++++++++++++++++++
 2 files changed, 121 insertions(+), 1 deletion(-)
 create mode 100644 src/couch/test/couch_query_servers_tests.erl


[couchdb] 01/01: Fix make warning from cpse_test_purge_seqs.erl

Posted by ji...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jiangphcn pushed a commit to branch 1573-export-all-for-pse-test
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit b648bbe5249e383f7a9a9abb256fc8f5d8334e39
Author: jiangph <ji...@cn.ibm.com>
AuthorDate: Thu Aug 23 13:52:34 2018 +0800

    Fix make warning from cpse_test_purge_seqs.erl
    
    Fixes #1572
---
 src/couch_pse_tests/src/cpse_test_purge_seqs.erl | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/couch_pse_tests/src/cpse_test_purge_seqs.erl b/src/couch_pse_tests/src/cpse_test_purge_seqs.erl
index c061747..a943fc4 100644
--- a/src/couch_pse_tests/src/cpse_test_purge_seqs.erl
+++ b/src/couch_pse_tests/src/cpse_test_purge_seqs.erl
@@ -11,6 +11,8 @@
 % the License.
 
 -module(cpse_test_purge_seqs).
+-compile(export_all).
+
 
 -include_lib("eunit/include/eunit.hrl").
 -include_lib("couch/include/couch_db.hrl").
@@ -99,7 +101,7 @@ cpse_increment_purge_seq_on_partial_purge(DbName) ->
     Doc1 = {[{'_id', foo}, {vsn, 1}]},
     Doc2 = {[{'_id', foo}, {vsn, 2}]},
     {ok, Rev1} = cpse_util:save_doc(DbName, Doc1),
-    {ok, Rev2} = cpse_util:save_doc(DbName, Doc2, [replicated_changes]),
+    {ok, _Rev2} = cpse_util:save_doc(DbName, Doc2, [replicated_changes]),
 
     cpse_util:assert_db_props(?MODULE, ?LINE, DbName, [
         {doc_count, 1},