mirror of https://github.com/apache/lucene.git
LUCENE-1042: Committed.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@603061 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c18fd87a1
commit
c2130982e3
|
@ -182,6 +182,9 @@ Bug fixes
|
|||
24. LUCENE-1071: Fixed SegmentMerger to correctly set payload bit in
|
||||
the merged segment. (Michael Busch)
|
||||
|
||||
25. LUCENE-1042: Remove throwing of IOException in getTermFreqVector(int, String, TermVectorMapper) to be consistent
|
||||
with other getTermFreqVector calls. Also removed the throwing of the other IOException in that method to be consistent. (Karl Wettin via Grant Ingersoll)
|
||||
|
||||
New features
|
||||
|
||||
1. LUCENE-906: Elision filter for French.
|
||||
|
|
|
@ -937,12 +937,12 @@ class SegmentReader extends DirectoryIndexReader {
|
|||
ensureOpen();
|
||||
FieldInfo fi = fieldInfos.fieldInfo(field);
|
||||
if (fi == null || !fi.storeTermVector || termVectorsReaderOrig == null)
|
||||
throw new IOException("field does not contain term vectors");
|
||||
return;
|
||||
|
||||
TermVectorsReader termVectorsReader = getTermVectorsReader();
|
||||
if (termVectorsReader == null)
|
||||
{
|
||||
throw new IOException("Cannot open a reader for the term vectors");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue