mirror of https://github.com/apache/lucene.git
LUCENE-3171: fixup CHANGES, add missing @Override
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1141170 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2f50268803
commit
2b8ef42a5c
|
@ -70,7 +70,7 @@ New Features
|
||||||
new contrib/join module, to enable searches that require joining
|
new contrib/join module, to enable searches that require joining
|
||||||
between parent and child documents. Joined (children + parent)
|
between parent and child documents. Joined (children + parent)
|
||||||
documents must be indexed as a document block, using
|
documents must be indexed as a document block, using
|
||||||
IndexWriter.add/UpdateDocuments ((Mark Harwood, Mike McCandless)
|
IndexWriter.add/UpdateDocuments (Mark Harwood, Mike McCandless)
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
|
|
||||||
|
|
|
@ -108,6 +108,7 @@ public class BlockJoinQuery extends Query {
|
||||||
this.scoreMode = scoreMode;
|
this.scoreMode = scoreMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public Weight createWeight(IndexSearcher searcher) throws IOException {
|
public Weight createWeight(IndexSearcher searcher) throws IOException {
|
||||||
return new BlockJoinWeight(this, childQuery.createWeight(searcher), parentsFilter, scoreMode);
|
return new BlockJoinWeight(this, childQuery.createWeight(searcher), parentsFilter, scoreMode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue