LUCENE-7871: fixing CHANGES.txt, mark it as Lucene 7.0 bug fix.

This commit is contained in:
Mikhail Khludnev 2017-07-03 15:53:57 +03:00
parent 5966f75663
commit bb2d6c128f
3 changed files with 4 additions and 4 deletions

View File

@ -105,6 +105,9 @@ Bug Fixes
* LUCENE-7859: Spatial-extras PackedQuadPrefixTree bug that only revealed itself * LUCENE-7859: Spatial-extras PackedQuadPrefixTree bug that only revealed itself
with the new pointsOnly optimizations in LUCENE-7845. (David Smiley) with the new pointsOnly optimizations in LUCENE-7845. (David Smiley)
* LUCENE-7871: fix false positive match in BlockJoinSelector when children have no value, introducing
wrap methods accepting children as DISI. Extracting ToParentDocValues (Mikhail Khludnev)
Improvements Improvements
* LUCENE-7489: Better storage of sparse doc-values fields with the default * LUCENE-7489: Better storage of sparse doc-values fields with the default

View File

@ -126,7 +126,7 @@ public class BlockJoinSelector {
return wrap(sortedNumerics, selection, parents, toIter(children)); return wrap(sortedNumerics, selection, parents, toIter(children));
} }
/** creates an interator for the given bitset */ /** creates an iterator for the given bitset */
protected static BitSetIterator toIter(BitSet children) { protected static BitSetIterator toIter(BitSet children) {
return new BitSetIterator(children, 0); return new BitSetIterator(children, 0);
} }

View File

@ -501,9 +501,6 @@ when using one of Exact*StatsCache (Mikhail Khludnev)
* SOLR-10910: Clean up a few details left over from pluggable transient core and untangling * SOLR-10910: Clean up a few details left over from pluggable transient core and untangling
CoreDescriptor/CoreContainer references (Erick Erickson) CoreDescriptor/CoreContainer references (Erick Erickson)
* LUCENE-7871: fix false positive match in BlockJoinSelector when children have no value, introducing
wrap methods accepting children as DISI. Extracting ToParentDocValues (Mikhail Khludnev)
Optimizations Optimizations
---------------------- ----------------------
* SOLR-10634: JSON Facet API: When a field/terms facet will retrieve all buckets (i.e. limit:-1) * SOLR-10634: JSON Facet API: When a field/terms facet will retrieve all buckets (i.e. limit:-1)