SOLR-12015: fixed typo in CHANGES.txt

This commit is contained in:
Noble Paul 2018-03-23 13:52:25 +11:00
parent e340cef68d
commit e364f5be31
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ New Features
currently performs cleanup of old inactive shards. (ab, shalin)
* SOLR-12015: Add support "add-distinct" in AtomicURP so that we can use the 'add-distict' as a request parameter e.g:
atomic.add-distict=<multival-field-name> (Amrit Sarkar via noble)
atomic.<multival-field-name>=add-distict (Amrit Sarkar via noble)
Bug Fixes
----------------------

View File

@ -45,7 +45,7 @@ import static org.apache.solr.common.SolrException.ErrorCode.SERVER_ERROR;
* <p>
* sample request:
* curl -X POST -H Content-Type: application/json
* http://localhost:8983/solr/test/update/json/docs?processor=atomic;ampersand;Atomic.my_newfield=add;ampersand;Atomic.subject=set;ampersand;Atomic.count_i=inc;ampersand;commit=true
* http://localhost:8983/solr/test/update/json/docs?processor=atomic;ampersand;atomic.my_newfield=add;ampersand;atomic.subject=set;ampersand;atomic.count_i=inc;ampersand;commit=true
* --data-binary {"id": 1,"title": "titleA"}
* </p>
* currently supports all types of atomic updates