mirror of https://github.com/apache/lucene.git
add todos, fix whitespace
This commit is contained in:
parent
5454e1030e
commit
c62ad7bba0
|
@ -215,6 +215,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase {
|
||||||
dir.close();
|
dir.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: on 6.0.0 release, gen the indices and add here:
|
||||||
final static String[] oldNames = {
|
final static String[] oldNames = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -343,6 +344,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase {
|
||||||
"5.5.0-nocfs"
|
"5.5.0-nocfs"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// TODO: on 6.0.0 release, gen the single segment indices and add here:
|
||||||
final static String[] oldSingleSegmentNames = {
|
final static String[] oldSingleSegmentNames = {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -951,6 +953,7 @@ public class TestBackwardsCompatibility extends LuceneTestCase {
|
||||||
// add numeric fields, to test if flex preserves encoding
|
// add numeric fields, to test if flex preserves encoding
|
||||||
doc.add(new LegacyIntField("trieInt", id, Field.Store.NO));
|
doc.add(new LegacyIntField("trieInt", id, Field.Store.NO));
|
||||||
doc.add(new LegacyLongField("trieLong", (long) id, Field.Store.NO));
|
doc.add(new LegacyLongField("trieLong", (long) id, Field.Store.NO));
|
||||||
|
|
||||||
// add docvalues fields
|
// add docvalues fields
|
||||||
doc.add(new NumericDocValuesField("dvByte", (byte) id));
|
doc.add(new NumericDocValuesField("dvByte", (byte) id));
|
||||||
byte bytes[] = new byte[] {
|
byte bytes[] = new byte[] {
|
||||||
|
|
Loading…
Reference in New Issue