Synchronize CHANGES.

This commit is contained in:
Adrien Grand 2022-03-22 15:55:32 +01:00
parent ca252d6621
commit 3105998ce6
1 changed files with 7 additions and 3 deletions

View File

@ -311,9 +311,6 @@ Bug Fixes
* LUCENE-10279: Fix equals in MultiRangeQuery. (Ignacio Vera)
* LUCENE-10236: Stop duplicating norms when scoring in CombinedFieldQuery.
(Zach Chen, Jim Ferenczi, Julie Tibshirani)
* LUCENE-10349: Fix all analyzers to behave according to their documentation:
getDefaultStopSet() methods now return unmodifiable CharArraySets. (Uwe Schindler)
@ -323,6 +320,9 @@ Bug Fixes
* LUCENE-10352: Fixed ctor argument checks: JapaneseKatakanaStemFilter,
DoubleMetaphoneFilter (Uwe Schindler, Robert Muir)
* LUCENE-10236: Stop duplicating norms when scoring in CombinedFieldQuery.
(Zach Chen, Jim Ferenczi, Julie Tibshirani)
* LUCENE-10353: Add random null injection to TestRandomChains. (Robert Muir,
Uwe Schindler)
@ -348,6 +348,10 @@ Bug Fixes
infinite loops in their parent BooleanQuery.
(Ankit Jain, Daniel Doubrovkine, Adrien Grand)
* LUCENE-10431: MultiTermQuery no longer includes its rewrite method in its hashcode
calculation, as this could cause problems with wrapper queries like BooleanQuery which
expect their child queries hashcodes to be stable. (Alan Woodward)
* LUCENE-10469: Fix ScoreMode propagation by ConstantScoreQuery. (Adrien Grand)
Other