use of org.apache.accumulo.core.iterators.DevNull in project accumulo by apache.
the class StatusCombinerTest method initCombiner.
@Before
public void initCombiner() throws IOException {
key = new Key();
combiner = new StatusCombiner();
builder = Status.newBuilder();
IteratorSetting cfg = new IteratorSetting(50, StatusCombiner.class);
Combiner.setColumns(cfg, Collections.singletonList(new Column(StatusSection.NAME)));
combiner.init(new DevNull(), cfg.getOptions(), new TestIE());
}
Aggregations