You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2017/07/04 01:24:08 UTC

[48/53] [abbrv] lucene-solr:feature/autoscaling: LUCENE-7871: fixing CHANGES.txt, mark it as Lucene 7.0 bug fix.

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


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/bb2d6c12
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/bb2d6c12
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/bb2d6c12

Branch: refs/heads/feature/autoscaling
Commit: bb2d6c128ff74d6164c5c60ac952074c1b5a5b94
Parents: 5966f75
Author: Mikhail Khludnev <mk...@apache.org>
Authored: Mon Jul 3 15:53:57 2017 +0300
Committer: Mikhail Khludnev <mk...@apache.org>
Committed: Mon Jul 3 15:53:57 2017 +0300

----------------------------------------------------------------------
 lucene/CHANGES.txt                                                | 3 +++
 .../src/java/org/apache/lucene/search/join/BlockJoinSelector.java | 2 +-
 solr/CHANGES.txt                                                  | 3 ---
 3 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bb2d6c12/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index 909b6ce..88e1779 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -105,6 +105,9 @@ Bug Fixes
 * LUCENE-7859: Spatial-extras PackedQuadPrefixTree bug that only revealed itself
   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
 
 * LUCENE-7489: Better storage of sparse doc-values fields with the default

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bb2d6c12/lucene/join/src/java/org/apache/lucene/search/join/BlockJoinSelector.java
----------------------------------------------------------------------
diff --git a/lucene/join/src/java/org/apache/lucene/search/join/BlockJoinSelector.java b/lucene/join/src/java/org/apache/lucene/search/join/BlockJoinSelector.java
index a81230d..79c35b8 100644
--- a/lucene/join/src/java/org/apache/lucene/search/join/BlockJoinSelector.java
+++ b/lucene/join/src/java/org/apache/lucene/search/join/BlockJoinSelector.java
@@ -126,7 +126,7 @@ public class BlockJoinSelector {
     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) {
     return new BitSetIterator(children, 0);
   }

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/bb2d6c12/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 8c06107..aadc6db 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -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
   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
 ----------------------
 * SOLR-10634: JSON Facet API: When a field/terms facet will retrieve all buckets (i.e. limit:-1)