You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ii...@apache.org on 2020/05/15 19:24:12 UTC

[couchdb] branch prototype/fdb-layer updated (c9cbcb4 -> d4a9723)

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

iilyak pushed a change to branch prototype/fdb-layer
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from c9cbcb4  Fix compiler warning
     new 3846af7  Fix variable shadowing
     new 4041741  Move not_implemented check down to allow testing of validation
     new af502ea  Add tests for legacy API before refactoring
     new b8a13a5  Implement pagination API
     new 02e4c3e  Add tests for pagination API
     new d4a9723  Merge pull request #2870 from cloudant/pagination-api-2

The 12446 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/chttpd/src/chttpd_db.erl               |  107 ++-
 src/chttpd/src/chttpd_view.erl             |  162 ++++-
 src/chttpd/test/exunit/pagination_test.exs | 1073 ++++++++++++++++++++++++++++
 src/couch_mrview/include/couch_mrview.hrl  |    8 +-
 src/couch_mrview/src/couch_mrview_http.erl |   24 +-
 src/couch_views/src/couch_views_http.erl   |  292 ++++++++
 src/couch_views/src/couch_views_util.erl   |   71 +-
 7 files changed, 1683 insertions(+), 54 deletions(-)
 create mode 100644 src/chttpd/test/exunit/pagination_test.exs
 create mode 100644 src/couch_views/src/couch_views_http.erl