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

garren pushed a change to branch fdb-mango-indexes
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 750b56b  update tests to work with mango on fdb
 discard 93071bf  mango queries work with fdb
 discard eafaf91  Add mango indexing
 discard 3ba5911  when query views allow to stream across transactions
 discard 9420301  Add build versionstamp
 discard 5ca2194  add after_doc_write function plugin
 discard e0cf957  add include_docs option to fold_docs
 discard 57cb1d1  move all_doc view options to fabric2_util
 discard a45f019  disable mango native proc
 discard 1e43190  Add option not to send meta on fold_docs
 discard 35cebd1  temp fix of bug in reverse folding
 discard 1ac167f  jobs resubmit adds new job data
     add 735b3f6  Enable fdb feature
     add 2fe1666  Clean up view size limit enforcement
     add 377a3d3  Refactor view index layout
     add 69fc02b  Fix handling of duplicate keys
     add e6f6e2d  Don't store `{0,0,[]}` for views with new results
     add 97458c3  Test size calculations for view rows
     add 17ce741  Optimize resubmitting pending jobs
     add 02ca72b  Implement a simple index auto-updater
     add 132cf7a  Enable index auto-updating for couch_views
     add 6b5985f  Fix bug in reverse folding with startkey_docid
     add 1457c28  couch_jobs resubmit updates job data (#2649)
     add a6667ff  Add option not to send meta on fold_docs
     add 8a4f430  disable mango native proc
     add 89ce8f7  move all_doc view options to fabric2_util
     add 8a6b7bf  add include_docs option to fold_docs
     add b92b6f8  add after_doc_write function plugin
     add 952b835  Add build versionstamp
     add f428a78  when query views allow to stream across transactions
     add 2ded44a  Add mango indexing
     add 30c5621  mango queries work with fdb
     add 2822938  update tests to work with mango on fdb

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   (750b56b)
            \
             N -- N -- N   refs/heads/fdb-mango-indexes (2822938)

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.

No new revisions were added by this update.

Summary of changes:
 rel/files/eunit.ini                               |   6 +-
 rel/overlay/etc/default.ini                       |  10 +
 src/couch_jobs/src/couch_jobs.erl                 |   8 +
 src/couch_jobs/src/couch_jobs_fdb.erl             |  32 +-
 src/couch_jobs/test/couch_jobs_tests.erl          |  74 +++
 src/couch_views/include/couch_views.hrl           |  18 +-
 src/couch_views/src/couch_views.erl               |  21 +-
 src/couch_views/src/couch_views_fdb.erl           | 150 ++----
 src/couch_views/src/couch_views_indexer.erl       |  59 ++-
 src/couch_views/src/couch_views_sup.erl           |   8 +
 src/couch_views/test/couch_views_indexer_test.erl |  86 +++-
 src/couch_views/test/couch_views_size_test.erl    | 564 ++++++++++++++++++++++
 src/fabric/src/fabric2_db.erl                     |   4 +
 src/fabric/src/fabric2_index.erl                  | 222 +++++++++
 src/fabric/src/fabric2_sup.erl                    |   9 +
 src/fabric/test/fabric2_index_tests.erl           | 304 ++++++++++++
 test/elixir/test/map_test.exs                     |  16 +
 17 files changed, 1469 insertions(+), 122 deletions(-)
 create mode 100644 src/couch_views/test/couch_views_size_test.erl
 create mode 100644 src/fabric/src/fabric2_index.erl
 create mode 100644 src/fabric/test/fabric2_index_tests.erl

Reply via email to