You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by da...@apache.org on 2018/09/20 23:59:17 UTC

[11/29] lucene-solr:jira/http2: Add missing changes entries for LUCENE-8502 and LUCENE-8503

Add missing changes entries for LUCENE-8502 and LUCENE-8503


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

Branch: refs/heads/jira/http2
Commit: 895bff46b2c3d3d027e693e11a2feac9f518191d
Parents: 44dbfaa
Author: Simon Willnauer <si...@apache.org>
Authored: Mon Sep 17 16:07:35 2018 +0200
Committer: Simon Willnauer <si...@apache.org>
Committed: Mon Sep 17 16:08:01 2018 +0200

----------------------------------------------------------------------
 lucene/CHANGES.txt | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/895bff46/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index f62fef2b..96c1c19 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -270,6 +270,10 @@ Bug Fixes:
 * LUCENE-8466: IndexWriter.deleteDocs(Query... query) incorrectly applies deletes on flush
   if the index is sorted. (Adrien Grand, Jim Ferenczi, Vish Ramachandran)
 
+* LUCENE-8502: Allow access to delegate in FilterCodecReader. FilterCodecReader didn't 
+  allow access to it's delegate like other filter readers. This adds a new #getDelegate method
+  to access the wrapped reader. (Simon Willnauer)
+
 Changes in Runtime Behavior:
 
 * LUCENE-7976: TieredMergePolicy now respects maxSegmentSizeMB by default when executing
@@ -279,6 +283,11 @@ Changes in Runtime Behavior:
   aggressively by default ensuring that no more than ~1/3 of the index size is
   used by deleted documents. (Adrien Grand)
 
+* LUCENE-8503: Call #getDelegate instead of direct member access during unwrap. 
+  Filter*Reader instances access the member or the delegate directly instead of 
+  calling getDelegate(). In order to track access of the delegate these methods
+  should call #getDelegate() (Simon Willnauer)
+
 Improvements
 
 * LUCENE-8468: A ByteBuffer based Directory implementation. (Dawid Weiss)