Hi together,
I am using CouchDB Version 1.4.0 and the Changes Feed, but I have a
litte problem with the style option
(http://localhost:5984/db1/_changes?style=all_docs) in the query
request. The JSON output does not return all leaf revisions in the
changes array (including conflicts and deleted former conflictes) -
which is mentioned in the official CouchDB documentation.
Please see my example and the JSON output
curl -X GET http://localhost:5984/db1/_changes?style=all_docs
{"results":[
{"seq":3,"id":"81abd28f263b2046ddfc867247007275","changes":[{"rev":"3-1a796ab41eeb8bafd3d6025a4b31928f"}]}
],
"last_seq":3}
The JSON output is also the same as with style=main_only and I can also
query all revisions of the document _id
81abd28f263b2046ddfc867247007275.....
Is this a known bug?
Michael