Results 19 comments of Christopher

Now only indexeddb adapter fails. I will look into it, on Sunday.

OK, indexeddb adapter implements its own [query interface](https://github.com/pouchdb/pouchdb/blob/9519c748c48cbac41451039765c758e5987bbc57/packages/node_modules/pouchdb-adapter-indexeddb/src/index.js#L129) (which is used by find). It only uses the [fields to find an index](https://github.com/pouchdb/pouchdb/blob/9519c748c48cbac41451039765c758e5987bbc57/packages/node_modules/pouchdb-adapter-indexeddb/src/find.js#L139). Those indexes are [native indexes](https://github.com/pouchdb/pouchdb/blob/9519c748c48cbac41451039765c758e5987bbc57/packages/node_modules/pouchdb-adapter-indexeddb/src/setup.js#L43), and they only...

Sorry for the long silence. I fixed it by adding to `_customFindAbstractMapper` a third argument: The standard/original `findAbstractMapper`. And then in the _indexeddb adapter_, I added a check if a...

@pouchdb & @janl OK, Pull request is refactored, squashed, and all tests pass! I think it is ready to review/merge.

@AlbaHerrerias I think this pull request is ready for merging.

I did add a warning. Once this pr is merged, I will open an Issue, for finding a way to fix performance in the indexeddb-adapter. Which will be complicated, a...

OK, I think `test.bulk_docs.js-http #3062 bulkDocs with staggered seqs` is on pouchdb-server unstable.

> > for finding a way to fix performance in the indexeddb-adapter. > > I’d be curious to know how you think this can be fixed :) At the moment...

PouchDB and CouchDB store JSON. BigInt has no method to convert to JSON. If you want to store BigInt, you have to convert it yourself. I also don't expect this...

🖖, Yes, there are even two! For both options you must look after the `_local/crypto` doc, to have the salt. And sync it manually. But once #80 lands, this gets...