This is an automated email from the ASF dual-hosted git repository.
eiri pushed a change to branch prototype/fdb-encryption
in repository https://gitbox.apache.org/repos/asf/couchdb.git.
discard 9b60149 Fix cipher tag
discard 68aa755 Switch to old crypto API for now
discard 75e37bc Store wrapped KEK in db config
discard 076b00d Add basic KEK cache
discard 3fdc3ea Grab KEK in main server loop
discard 9629fda Don't block encryption server on encode/decode operations
discard cd40630 Add basic data encryption
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
new 996f81f Add basic data encryption
new fb99ea7 Don't block encryption server on encode/decode operations
new e60c7cc Grab KEK in main server loop
new 64a3193 Add basic KEK cache
new 1ae2f54 Store wrapped KEK in db config
new e93166d Add basic tests
new 847b093 Switch to old crypto API for now
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 (9b60149)
\
N -- N -- N refs/heads/prototype/fdb-encryption (847b093)
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 7 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_views/include/couch_views.hrl | 16 +-
src/couch_views/src/couch_views_fdb.erl | 36 +-
src/couch_views/src/couch_views_indexer.erl | 5 +
src/couch_views/test/couch_views_indexer_test.erl | 56 ++-
src/couch_views/test/couch_views_size_test.erl | 564 ++++++++++++++++++++++
src/fabric/src/fabric2_encryption.erl | 46 +-
6 files changed, 700 insertions(+), 23 deletions(-)
create mode 100644 src/couch_views/test/couch_views_size_test.erl