You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Matt Goodall (JIRA)" <ji...@apache.org> on 2010/02/26 18:11:27 UTC

[jira] Created: (COUCHDB-674) Inconsistent error response, DELETE vs _bulk_docs deleted=true

Inconsistent error response, DELETE vs _bulk_docs deleted=true
--------------------------------------------------------------

                 Key: COUCHDB-674
                 URL: https://issues.apache.org/jira/browse/COUCHDB-674
             Project: CouchDB
          Issue Type: Bug
          Components: Database Core
            Reporter: Matt Goodall


The result from deleting an already deleted document using an HTTP DELETE and a _bulk_docs {"deleted": true} is not consistent.

$ curl http://localhost:5984/scratch/foo -X PUT -d '{}'
{"ok":true,"id":"foo","rev":"1-967a00dff5e02add41819138abb3284d"}
$ curl http://localhost:5984/scratch/foo?rev=1-967a00dff5e02add41819138abb3284d -X DELETE
{"ok":true,"id":"foo","rev":"2-eec205a9d413992850a6e32678485900"}
$ curl http://localhost:5984/scratch/foo?rev=1-967a00dff5e02add41819138abb3284d -X DELETE
{"error":"not_found","reason":"deleted"}
$ curl http://localhost:5984/scratch/_bulk_docs -X POST -d '{"docs": [{"_id": "foo", "_rev": "1-967a00dff5e02add41819138abb3284d", "_deleted": true}]}'
[{"id":"foo","error":"conflict","reason":"Document update conflict."}]

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (COUCHDB-674) Inconsistent error response, DELETE vs _bulk_docs deleted=true

Posted by "Paul Joseph Davis (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COUCHDB-674?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul Joseph Davis updated COUCHDB-674:
--------------------------------------

    Skill Level: New Contributors Level (Easy)

> Inconsistent error response, DELETE vs _bulk_docs deleted=true
> --------------------------------------------------------------
>
>                 Key: COUCHDB-674
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-674
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Database Core
>            Reporter: Matt Goodall
>
> The result from deleting an already deleted document using an HTTP DELETE and a _bulk_docs {"deleted": true} is not consistent.
> $ curl http://localhost:5984/scratch/foo -X PUT -d '{}'
> {"ok":true,"id":"foo","rev":"1-967a00dff5e02add41819138abb3284d"}
> $ curl http://localhost:5984/scratch/foo?rev=1-967a00dff5e02add41819138abb3284d -X DELETE
> {"ok":true,"id":"foo","rev":"2-eec205a9d413992850a6e32678485900"}
> $ curl http://localhost:5984/scratch/foo?rev=1-967a00dff5e02add41819138abb3284d -X DELETE
> {"error":"not_found","reason":"deleted"}
> $ curl http://localhost:5984/scratch/_bulk_docs -X POST -d '{"docs": [{"_id": "foo", "_rev": "1-967a00dff5e02add41819138abb3284d", "_deleted": true}]}'
> [{"id":"foo","error":"conflict","reason":"Document update conflict."}]

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (COUCHDB-674) Inconsistent error response, DELETE vs _bulk_docs deleted=true

Posted by "A. Bram Neijt (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/COUCHDB-674?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12930134#action_12930134 ] 

A. Bram Neijt commented on COUCHDB-674:
---------------------------------------

Wouldn't it be weird to get a "can't find the document" if you want to mark it as deleted?

I mean, there is a difference between actually deleting it and updating it to a deleted state. The first implies the object is there, the second implies the object is in a deletable state.

I'm not convinced they should return the same error messages.

> Inconsistent error response, DELETE vs _bulk_docs deleted=true
> --------------------------------------------------------------
>
>                 Key: COUCHDB-674
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-674
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Database Core
>            Reporter: Matt Goodall
>
> The result from deleting an already deleted document using an HTTP DELETE and a _bulk_docs {"deleted": true} is not consistent.
> $ curl http://localhost:5984/scratch/foo -X PUT -d '{}'
> {"ok":true,"id":"foo","rev":"1-967a00dff5e02add41819138abb3284d"}
> $ curl http://localhost:5984/scratch/foo?rev=1-967a00dff5e02add41819138abb3284d -X DELETE
> {"ok":true,"id":"foo","rev":"2-eec205a9d413992850a6e32678485900"}
> $ curl http://localhost:5984/scratch/foo?rev=1-967a00dff5e02add41819138abb3284d -X DELETE
> {"error":"not_found","reason":"deleted"}
> $ curl http://localhost:5984/scratch/_bulk_docs -X POST -d '{"docs": [{"_id": "foo", "_rev": "1-967a00dff5e02add41819138abb3284d", "_deleted": true}]}'
> [{"id":"foo","error":"conflict","reason":"Document update conflict."}]

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.