use of org.apache.druid.query.aggregation.VectorAggregator in project druid by druid-io.
the class FloatAnyAggregatorFactoryTest method factorizeVectorShouldReturnFloatVectorAggregator.
@Test
public void factorizeVectorShouldReturnFloatVectorAggregator() {
VectorAggregator aggregator = target.factorizeVector(selectorFactory);
Assert.assertNotNull(aggregator);
Assert.assertEquals(FloatAnyVectorAggregator.class, aggregator.getClass());
}
Aggregations