SOLR-9004: Fix name field type definition in films example

This commit is contained in:
Varun Thacker 2016-04-17 23:51:47 +05:30
parent 44c9cd2fe8
commit 727852fb78
2 changed files with 4 additions and 0 deletions

View File

@ -124,6 +124,8 @@ Bug Fixes
* SOLR-8662: SchemaManager waits correctly for replicas to be notified of a new change. * SOLR-8662: SchemaManager waits correctly for replicas to be notified of a new change.
(sarowe, Noble Paul, Varun Thacker) (sarowe, Noble Paul, Varun Thacker)
* SOLR-9004: Fix "name" field type definition in films example. (Alexandre Rafalovitch via Varun Thacker)
Optimizations Optimizations
---------------------- ----------------------
* SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation. * SOLR-8722: Don't force a full ZkStateReader refresh on every Overseer operation.

View File

@ -22,6 +22,7 @@ curl http://localhost:8983/solr/films/schema -X POST -H 'Content-type:applicatio
"add-field" : { "add-field" : {
"name":"name", "name":"name",
"type":"text_general", "type":"text_general",
"multiValued":false,
"stored":true "stored":true
}, },
"add-field" : { "add-field" : {
@ -103,6 +104,7 @@ curl http://localhost:8983/solr/films/schema -X POST -H 'Content-type:applicatio
"add-field" : { "add-field" : {
"name":"name", "name":"name",
"type":"text_general", "type":"text_general",
"multiValued":false,
"stored":true "stored":true
}, },
"add-field" : { "add-field" : {