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
            Priority: Trivial
             Fix For: 1.4


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