mirror of https://github.com/apache/lucene.git
SOLR-11059: Randomize PointFields in schema-blockjoinfacetcomponent.xml and all related tests
This commit is contained in:
parent
8d7e3cc929
commit
7b5c50c3c8
|
@ -469,6 +469,7 @@ Other Changes
|
||||||
- SOLR-10989: Randomize PointFields and general cleanup in schema files where some Trie fields were unused (hossman)
|
- SOLR-10989: Randomize PointFields and general cleanup in schema files where some Trie fields were unused (hossman)
|
||||||
- SOLR-11048: Randomize PointsFields in schema-add-schema-fields-update-processor.xml in solr-core collection1 and
|
- SOLR-11048: Randomize PointsFields in schema-add-schema-fields-update-processor.xml in solr-core collection1 and
|
||||||
all affected tests (Anshum Gupta)
|
all affected tests (Anshum Gupta)
|
||||||
|
- SOLR-11059: Randomize PointFields in schema-blockjoinfacetcomponent.xml and all related tests (Anshum Gupta)
|
||||||
|
|
||||||
* SOLR-6807: Changed requestDispatcher's handleSelect to default to false, thus ignoring "qt".
|
* SOLR-6807: Changed requestDispatcher's handleSelect to default to false, thus ignoring "qt".
|
||||||
Simplified configs to not refer to handleSelect or "qt". Switch all tests that assumed true to assume false
|
Simplified configs to not refer to handleSelect or "qt". Switch all tests that assumed true to assume false
|
||||||
|
|
|
@ -17,9 +17,9 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<schema name="test" version="1.0">
|
<schema name="test" version="1.0">
|
||||||
<fieldType name="int" class="solr.TrieIntField" precisionStep="0" positionIncrementGap="0"/>
|
<fieldType name="int" class="${solr.tests.IntegerFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" positionIncrementGap="0"/>
|
||||||
<fieldType name="float" class="solr.TrieFloatField" precisionStep="0" positionIncrementGap="0"/>
|
<fieldType name="float" class="${solr.tests.FloatFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" positionIncrementGap="0"/>
|
||||||
<fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
|
<fieldType name="long" class="${solr.tests.LongFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
|
||||||
<fieldtype name="string" class="solr.StrField" sortMissingLast="true"/>
|
<fieldtype name="string" class="solr.StrField" sortMissingLast="true"/>
|
||||||
|
|
||||||
<field name="id" type="string" indexed="true" stored="true" multiValued="false" required="false"/>
|
<field name="id" type="string" indexed="true" stored="true" multiValued="false" required="false"/>
|
||||||
|
|
Loading…
Reference in New Issue