[
https://issues.apache.org/jira/browse/SOLR-976?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Koji Sekiguchi updated SOLR-976:
--------------------------------
Attachment: SOLR-976.patch
> 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
>
> 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.