BlockStore store = new BlockStore(db, "test", null);
store.create();
Block block = store.allocateIndexBlock();
long blockId = block.getBlockId();
block.free();
return new BTree(store, blockId, keySize, new KeyCompare());
}
public static BTree createStringTest(Path path, int keySize)