shangruqi

Results 8 comments of shangruqi

> Unfortunately this breaks some existing functionality (see the PR validation result). This area is very hard to touch without precise knowledge of what is going on. However you noted...

@borrrden Could we talk about this? I don't understand the test case that failed. core/Replicator/tests/ReplicatorLoopbackTest.cc, line 1257. ```c++ // For https://github.com/couchbase/sync_gateway/issues/3359 C4Slice docID = C4STR("Khan"); { TransactionHelper t(db); createRev(db, docID,...

By the way, where should I commit new issues if it's about android but not core? I asked some questions here. https://github.com/couchbase/couchbase-lite-java-ce-root/issues/12. And, we found more problems on replication. Thank...

> If you mean file issues, the android repo is [here](https://github.com/couchbase/couchbase-lite-android). The repo you mentioned is for Java desktop. > > However, if you want to ask questions please use...

As I keep debugging, I wonder why a C4DocPutRequest has a "allowConflict" field? That is to say, why do we need to allow conflict revs to exist (but not tagged)?...

> It has nothing to do with tagging or not tagging. That flag is simply whether or not to outright refuse to insert (`false`) or not (`true`). The former can...

I have a case that may change your mind. This is a real case at work, but I did some simplification. We get csv files from other companies to parse:...

Sorry, we met this issue because we incorrectly used `mapper.schemaWithHeader()`. After changing it to `mapper.schemaFor(xxx)`, our class with annotation worked fine for the case I described.