mirror of https://github.com/apache/lucene.git
SOLR-10926: Increase the odds of randomly choosing point fields in our SolrTestCaseJ4 numeric type randomization
This commit is contained in:
parent
d90efebe75
commit
59db1a8662
|
@ -567,6 +567,9 @@ Other Changes
|
|||
* SOLR-11056: Add random range query test that compares results across Trie*, *Point and DocValue-only fields
|
||||
(Tomás Fernández Löbbe)
|
||||
|
||||
* SOLR-10926: Increase the odds of randomly choosing point fields in our SolrTestCaseJ4 numeric type randomization.
|
||||
(hossman, Steve Rowe)
|
||||
|
||||
================== 6.7.0 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||
|
|
|
@ -2705,7 +2705,7 @@ public abstract class SolrTestCaseJ4 extends LuceneTestCase {
|
|||
System.setProperty(NUMERIC_DOCVALUES_SYSPROP, ""+useDV);
|
||||
|
||||
// consume a consistent amount of random data even if sysprop/annotation is set
|
||||
final boolean randUsePoints = random().nextBoolean();
|
||||
final boolean randUsePoints = 0 != random().nextInt(5); // 80% likelihood
|
||||
|
||||
final String usePointsStr = System.getProperty(USE_NUMERIC_POINTS_SYSPROP);
|
||||
final boolean usePoints = (null == usePointsStr) ? randUsePoints : Boolean.parseBoolean(usePointsStr);
|
||||
|
|
Loading…
Reference in New Issue