mirror of https://github.com/apache/lucene.git
SOLR-7675: add missing _root_ field to managed-schema for nested docs indexing
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1685275 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8ae97d60a5
commit
63db425c87
|
@ -126,6 +126,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-7566: Search requests should return the shard name that is down. (Marius Grama, shalin)
|
||||
|
||||
* SOLR-7667: Add missing _root_ field to managed-schema template so that the default data driven
|
||||
config set can index nested documents by default. (yonik)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
* SOLR-7660: Avoid redundant 'exists' calls made to ZK while fetching cluster state updates. (shalin)
|
||||
|
|
|
@ -118,6 +118,7 @@
|
|||
-->
|
||||
<field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" />
|
||||
<field name="_version_" type="long" indexed="true" stored="true"/>
|
||||
<field name="_root_" type="string" indexed="true" stored="false"/>
|
||||
<field name="_text_" type="text_general" indexed="true" stored="false" multiValued="true"/>
|
||||
<copyField source="*" dest="_text_"/>
|
||||
|
||||
|
|
Loading…
Reference in New Issue