mirror of https://github.com/apache/lucene.git
SOLR-11313: Finish the job of removing trie fields from the DIH example schemas
This commit is contained in:
parent
b4a1a1a87b
commit
810ae50e7e
|
@ -796,7 +796,7 @@ Other Changes
|
|||
* SOLR-10494: Make default response format JSON (wt=json), and also indent text responses formats
|
||||
(indent=on) by default (Trey Grainger & Cassandra Targett via hossman)
|
||||
|
||||
* SOLR-10760,SOLR-11315: Remove trie field types and fields from example schemas. (Steve Rowe)
|
||||
* SOLR-10760,SOLR-11315,SOLR-11313: Remove trie field types and fields from example schemas. (Steve Rowe)
|
||||
|
||||
* SOLR-11056: Add random range query test that compares results across Trie*, *Point and DocValue-only fields
|
||||
(Tomás Fernández Löbbe)
|
||||
|
|
|
@ -218,7 +218,7 @@
|
|||
<dynamicField name="*_ds" type="pdouble" indexed="true" stored="true" multiValued="true"/>
|
||||
|
||||
<!-- Type used to index the lat and lon components for the "location" FieldType -->
|
||||
<dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" />
|
||||
<dynamicField name="*_coordinate" type="pdouble" indexed="true" stored="false" />
|
||||
|
||||
<dynamicField name="*_dt" type="pdate" indexed="true" stored="true"/>
|
||||
<dynamicField name="*_dts" type="pdate" indexed="true" stored="true" multiValued="true"/>
|
||||
|
|
|
@ -154,7 +154,7 @@
|
|||
<dynamicField name="*_ds" type="pdouble" indexed="true" stored="true" multiValued="true"/>
|
||||
|
||||
<!-- Type used to index the lat and lon components for the "location" FieldType -->
|
||||
<dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" />
|
||||
<dynamicField name="*_coordinate" type="pdouble" indexed="true" stored="false" />
|
||||
|
||||
<dynamicField name="*_dt" type="pdate" indexed="true" stored="true"/>
|
||||
<dynamicField name="*_dts" type="pdate" indexed="true" stored="true" multiValued="true"/>
|
||||
|
|
|
@ -218,7 +218,7 @@
|
|||
<dynamicField name="*_ds" type="pdouble" indexed="true" stored="true" multiValued="true"/>
|
||||
|
||||
<!-- Type used to index the lat and lon components for the "location" FieldType -->
|
||||
<dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" />
|
||||
<dynamicField name="*_coordinate" type="pdouble" indexed="true" stored="false" />
|
||||
|
||||
<dynamicField name="*_dt" type="pdate" indexed="true" stored="true"/>
|
||||
<dynamicField name="*_dts" type="pdate" indexed="true" stored="true" multiValued="true"/>
|
||||
|
|
Loading…
Reference in New Issue