couchbaselabs / TouchDB-Android

CouchDB-compatible mobile database; Android version

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

views with deleted docs: inconsistency with couchdb / deleted=true is inaccessible

svilendobrev opened this issue · comments

couchDB: {"id":"...","key":"...","value":{"rev":"2-..","deleted":true}, "doc":null}
touchDB : {"id":"...","key":"...","value":{"rev":"2-.."}, "deleted":true,"doc":null}
so "deleted" field is not in value{}, but outside.

and as the underlaying Ektorp: ViewResult.Row.rowNode is inaccessible..
there's no way to see it. (now i'm guessing by doc-field becoming isMissingNode() but that is weak)