Skip to content

Commit

Permalink
SOLR-11313: Finish the job of removing trie fields from the DIH examp…
Browse files Browse the repository at this point in the history
…le schemas
  • Loading branch information
sarowe committed Sep 5, 2017
1 parent b4a1a1a commit 810ae50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion solr/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion solr/example/example-DIH/solr/db/conf/managed-schema
Original file line number Diff line number Diff line change
Expand Up @@ -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"/>
Expand Down
2 changes: 1 addition & 1 deletion solr/example/example-DIH/solr/mail/conf/managed-schema
Original file line number Diff line number Diff line change
Expand Up @@ -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"/>
Expand Down
2 changes: 1 addition & 1 deletion solr/example/example-DIH/solr/solr/conf/managed-schema
Original file line number Diff line number Diff line change
Expand Up @@ -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"/>
Expand Down

0 comments on commit 810ae50

Please sign in to comment.