mirror of https://github.com/apache/lucene.git
SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests
This commit is contained in:
parent
1922126705
commit
3110a5d06f
|
@ -497,6 +497,7 @@ Other Changes
|
||||||
- SOLR-11095: Randomize PointFields in doc-expiry & exitabe-directory test configsets (hossman)
|
- SOLR-11095: Randomize PointFields in doc-expiry & exitabe-directory test configsets (hossman)
|
||||||
- SOLR-11097: Randomize PointFields in schema-id-and-version-fields-only.xml and all affected tests (hossman)
|
- SOLR-11097: Randomize PointFields in schema-id-and-version-fields-only.xml and all affected tests (hossman)
|
||||||
- SOLR-11098: Randomize PointFields in cloud-managed-preanalyzed & schema-preanalyzed.xml and all affected tests (hossman)
|
- SOLR-11098: Randomize PointFields in cloud-managed-preanalyzed & schema-preanalyzed.xml and all affected tests (hossman)
|
||||||
|
- SOLR-11101: Randomize PointFields in "cloud-minimal" test configset and all affected tests (Steve Rowe)
|
||||||
|
|
||||||
* 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,8 +17,8 @@
|
||||||
-->
|
-->
|
||||||
<schema name="minimal" version="1.1">
|
<schema name="minimal" version="1.1">
|
||||||
<fieldType name="string" class="solr.StrField"/>
|
<fieldType name="string" class="solr.StrField"/>
|
||||||
<fieldType name="int" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
|
<fieldType name="int" class="${solr.tests.IntegerFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" 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"/>
|
||||||
<dynamicField name="*" type="string" indexed="true" stored="true"/>
|
<dynamicField name="*" type="string" indexed="true" stored="true"/>
|
||||||
<!-- for versioning -->
|
<!-- for versioning -->
|
||||||
<field name="_version_" type="long" indexed="true" stored="true"/>
|
<field name="_version_" type="long" indexed="true" stored="true"/>
|
||||||
|
|
Loading…
Reference in New Issue