mirror of https://github.com/apache/lucene.git
LUCENE-6049: changes entry
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1637529 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b7059e7628
commit
e59980558c
|
@ -215,6 +215,10 @@ Bug Fixes
|
||||||
* LUCENE-6054: Allow repeating the empty automaton (Nik Everett via
|
* LUCENE-6054: Allow repeating the empty automaton (Nik Everett via
|
||||||
Mike McCandless)
|
Mike McCandless)
|
||||||
|
|
||||||
|
* LUCENE-6049: Don't throw cryptic exception writing a segment when
|
||||||
|
the only docs in it had fields that hit non-aborting exceptions
|
||||||
|
during indexing but also had doc values. (Mike McCandless)
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
|
|
||||||
* LUCENE-5392: Add/improve analysis package documentation to reflect
|
* LUCENE-5392: Add/improve analysis package documentation to reflect
|
||||||
|
|
|
@ -619,6 +619,7 @@ public abstract class BaseTokenStreamTestCase extends LuceneTestCase {
|
||||||
currentField = new Field("dummy", bogus, ft);
|
currentField = new Field("dummy", bogus, ft);
|
||||||
doc.add(currentField);
|
doc.add(currentField);
|
||||||
} else {
|
} else {
|
||||||
|
System.out.println("add doc=" + doc);
|
||||||
iw.addDocument(doc);
|
iw.addDocument(doc);
|
||||||
if (doc.getFields().size() > 1) {
|
if (doc.getFields().size() > 1) {
|
||||||
// back to 1 field
|
// back to 1 field
|
||||||
|
|
Loading…
Reference in New Issue