mirror of https://github.com/apache/lucene.git
SOLR-9004: Fix name field type definition in films example
This commit is contained in:
parent
44c9cd2fe8
commit
727852fb78
|
@ -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.
|
||||||
|
|
|
@ -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" : {
|
||||||
|
|
Loading…
Reference in New Issue