Introduce "sparse document" information which can be retrieved even when include_docs=false is
set. This allows for retrieval of id, rev, and deleted flag.
Also, add null check to getDocsAs(): this ensures that attempting to deserialise deleted documents does not prevent retrieval of non-deleted ones.
What
Allow retrieval of
deleted
flag onall_docs
How
Introduce "sparse document" information which can be retrieved even when
include_docs=false
is set. This allows for retrieval ofid
,rev
, anddeleted
flag.Also, add
null
check togetDocsAs()
: this ensures that attempting to deserialise deleted documents does not prevent retrieval of non-deleted ones.Testing
Added
allDocsWithKeysDocDeleted
allDocsWithKeysDocDeletedIncludeDocs
allDocsWithKeysDocDeletedIncludeDocsGetDocsAs
Issues
See #427 See #440