You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/01/28 19:43:27 UTC

[couchdb] branch ini-singlenode-false updated (82bd2d3 -> bdd3769)

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

wohali pushed a change to branch ini-singlenode-false
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 82bd2d3  Merge branch 'master' into ini-singlenode-false
     add 018ec6b  fix empty queries (#1783)
     add f86747f  Refactor Mango warning generation
     add b5fe3d6  Add mango.query_invalid_index counter
     add 5d55e28  Warn on mango index scan
     add 1cacc76  Instrument Mango execution stats
     add 39c2b97  Add a few missing settings to the default.ini file
     add 6dd963a  Handle not_found docs in mango text indexes
     add bad1b17  Merge pull request #2466 from apache/mango_index_consistency_error
     add aecf879  Port etags tests to elixir
     add 7214e50  [Jenkins] Try to cleanup hung beam.smp (FreeBSD) (#2468)
     add b946457  Fix infinite loop in default_authentication_handler
     add 2c9ddd6  Merge pull request #2473 from apache/infinite-loop-auth
     add 922ea46  Log clustered URIs at startup
     add 2ac0673  Add POST /_node/<node>/_config/_reload
     add 3e0dd6b  Replace Triq with PropEr
     add 35b9d45  Enable building on Power (ppc64le) architecture (#2455)
     add 3c2eccc  Python black cleanups (#2477)
     add acdfd39  Fix misspelling in dreyfus
     add 1d25b9d  Update couchdb-config to 2.1.7
     add fb59a61  Remove reduntant get_ring_opts call in in dreyfus_fabric_search
     add 0ed1789  Revert default priority change for couch_server (#2487)
     add 83bdcf6  Revert prio flag in default.ini (#2488)
     add 866a836  Jenkins: bump Erlang versions (#2492)
     add d59d84a  quote strings for all text values (#2486)
     add 2aeae47  bump ets_lru, khash revs (#2491)
     add bdd3769  Merge branch 'master' into ini-singlenode-false

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 build-aux/Jenkinsfile.full                         |  70 ++++++++--
 build-aux/Jenkinsfile.pr                           |  10 +-
 build-aux/show-test-results.py                     |   2 +-
 mix.exs                                            |   1 -
 rebar.config.script                                |   8 +-
 rel/overlay/etc/default.ini                        |  29 +++-
 src/chttpd/src/chttpd_auth.erl                     |   8 +-
 src/chttpd/src/chttpd_node.erl                     |  10 ++
 .../couch_eunit_proper.hrl}                        |  19 ++-
 src/couch/priv/stats_descriptions.cfg              |  28 ++++
 src/couch/rebar.config.script                      |   7 +-
 src/couch/src/couch_httpd_auth.erl                 |   5 -
 src/couch/src/couch_sup.erl                        |   2 +-
 src/couch/src/couch_util.erl                       |   2 +-
 src/couch/test/eunit/couch_key_tree_prop_tests.erl |  40 +++---
 src/dreyfus/src/dreyfus_fabric_search.erl          |   1 -
 src/mango/src/mango_cursor.erl                     | 139 +++++++++++++------
 src/mango/src/mango_cursor_special.erl             |   7 +-
 src/mango/src/mango_cursor_text.erl                |  17 ++-
 src/mango/src/mango_cursor_view.erl                |  20 ++-
 src/mango/src/mango_execution_stats.erl            |   9 +-
 src/mango/src/mango_idx_text.erl                   |   2 +
 src/mango/src/mango_selector.erl                   |  30 +++-
 src/mango/src/mango_selector_text.erl              |  32 ++++-
 src/mango/src/mango_util.erl                       |   2 +
 src/mango/test/02-basic-find-test.py               |   1 +
 src/mango/test/05-index-selection-test.py          |   8 +-
 src/mango/test/06-basic-text-test.py               |  18 +++
 src/mango/test/12-use-correct-index-test.py        |   4 +-
 src/mango/test/15-execution-stats-test.py          |   5 +-
 src/mango/test/21-empty-selector-tests.py          |  73 ++++++++++
 src/mango/test/mango.py                            |  10 +-
 src/mango/test/user_docs.py                        |   1 +
 .../rebar.config.script}                           |  20 ++-
 src/mem3/test/eunit/mem3_ring_prop_tests.erl       |  17 ++-
 test/elixir/README.md                              |   4 +-
 test/elixir/lib/couch.ex                           |  22 ++-
 test/elixir/test/config_test.exs                   |   7 +
 test/elixir/test/etags_head_test.exs               | 151 +++++++++++++++++++++
 test/javascript/tests/etags_head.js                |   2 +
 41 files changed, 679 insertions(+), 165 deletions(-)
 copy src/couch/{test/eunit/couch_bt_engine_tests.erl => include/couch_eunit_proper.hrl} (56%)
 create mode 100644 src/mango/test/21-empty-selector-tests.py
 copy src/{chttpd/priv/stats_descriptions.cfg => mem3/rebar.config.script} (59%)
 create mode 100644 test/elixir/test/etags_head_test.exs