[ 
https://issues.apache.org/jira/browse/SOLR-976?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12671571#action_12671571
 ] 

Koji Sekiguchi commented on SOLR-976:
-------------------------------------

Hoss, Mark, thank you for your comments. I'll commit the patch shortly.

> deleteByQuery is ignored when deleteById is placed prior to deleteByQuery in 
> a <delete> 
> ----------------------------------------------------------------------------------------
>
>                 Key: SOLR-976
>                 URL: https://issues.apache.org/jira/browse/SOLR-976
>             Project: Solr
>          Issue Type: Bug
>            Reporter: Koji Sekiguchi
>            Assignee: Koji Sekiguchi
>            Priority: Trivial
>             Fix For: 1.4
>
>         Attachments: SOLR-976.patch
>
>
> Due to the following if block, deleteByQuery cannot be executed. cmd.id and 
> cmd.query should be set to null when UpdateProcessor chain is finished.
> {code:title=RunUpdateProcessor}
> public void processDelete(DeleteUpdateCommand cmd) throws IOException {
>   if( cmd.id != null ) {
>     updateHandler.delete(cmd);
>   }
>   else {
>     updateHandler.deleteByQuery(cmd);
>   }
>   super.processDelete(cmd);
> }
> {code}

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

Reply via email to