don't test merge stability of point values: our BKD tree impl is not stable on 1D merge

This commit is contained in:
Mike McCandless 2016-01-29 09:12:35 -05:00
parent ddbf3a2168
commit 27c28b5340
1 changed files with 6 additions and 0 deletions

View File

@ -919,4 +919,10 @@ public abstract class BasePointFormatTestCase extends BaseIndexFileFormatTestCas
//dir = FSDirectory.open(createTempDir());
return dir;
}
@Override
public void testMergeStability() {
// suppress this test from base class: merges for BKD trees are not stable because the tree created by merge will have a different
// structure than the tree created by adding points separately
}
}