You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Marius Grama (JIRA)" <ji...@apache.org> on 2015/06/14 23:56:00 UTC

[jira] [Updated] (SOLR-7679) Schema API doesn't take similarity attribute into account when adding field types

     [ https://issues.apache.org/jira/browse/SOLR-7679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Marius Grama updated SOLR-7679:
-------------------------------
    Attachment: SOLR-7679.patch

Here is a patch fixing this issue.
Fix is done by creating the similarity element containing the sent attributes.
No unit test provided as part of this ticket, but within SOLR-7182 (work in progress) there is a unit test for this specific situation.


> Schema API doesn't take similarity attribute into account when adding field types
> ---------------------------------------------------------------------------------
>
>                 Key: SOLR-7679
>                 URL: https://issues.apache.org/jira/browse/SOLR-7679
>             Project: Solr
>          Issue Type: Bug
>          Components: Schema and Analysis
>    Affects Versions: 5.2
>            Reporter: Marius Grama
>            Priority: Minor
>             Fix For: 5.3, Trunk
>
>         Attachments: SOLR-7679.patch
>
>
> When using the request
> {code}
> curl -X POST -H 'Content-type:application/json' --data-binary '{
>   "add-field-type": {
>     "name": "fieldTypeWithSimilarity",
>     "class": "org.apache.solr.schema.TextField",
>     "analyzer": {
>       "charFilters": [
>         {
>           "class": "solr.PatternReplaceCharFilterFactory",
>           "replacement": "$1$1",
>           "pattern": "([a-zA-Z])\\\\1+"
>         }
>       ],
>       "tokenizer": {
>         "class": "solr.WhitespaceTokenizerFactory"
>       }
>     },
>     "similarity": {
>       "class": "org.apache.lucene.misc.SweetSpotSimilarity"
>     }
>   }
> }' http://localhost:8983/solr/gettingstarted/schema
> {code}
> can be seen in the updated schema.xml that the similarity attributes for the newly added field type doesn't contain a _similarity_ entry.
> This is due to the fact that within FieldTypeXmlAdapter the similiarity element is not being added to the field type.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org