zouabimourad opened a new issue, #9159:
URL: https://github.com/apache/pouchdb/issues/9159
Couchbase Sync Gateway version 4 introduced the following reserved word : _cv
Example :
```
[
{
"ok": {
"_cv": "187df7e66ae00000@fUg0fMjWOGqUikX7tDNzCA",
"_id": "xxxxxxx",
"_rev": "1-499d68230bad1146aac51c3b38b21273",
"_revisions": {
"ids": [
"499d68230bad1146aac51c3b38b21273"
],
"start": 1
},
```
Could you add it in reservedWords list like the following :
```
var reservedWords = toObject([
'_id',
'_rev',
'_access',
'_attachments',
'_deleted',
'_revisions',
'_revs_info',
'_conflicts',
'_deleted_conflicts',
'_local_seq',
'_rev_tree',
// replication documents
'_replication_id',
'_replication_state',
'_replication_state_time',
'_replication_state_reason',
'_replication_stats',
// Specific to Couchbase Sync Gateway
'_removed',
'_cv'
]);
```
Thanks in advance.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]