use of org.apache.carbondata.core.datastore.BTreeBuilderInfo in project carbondata by apache.
the class BTreeBlockFinderTest method testBtreeBuldingIsPorper.
@Test
public void testBtreeBuldingIsPorper() {
BtreeBuilder builder = new BlockBTreeBuilder();
List<DataFileFooter> footerList = getDataFileFooterList();
BTreeBuilderInfo infos = new BTreeBuilderInfo(footerList, null);
builder.build(infos);
}
Aggregations