mirror of https://github.com/apache/druid.git
fix cardinality aggregator serde
This commit is contained in:
parent
d0fbd5f729
commit
592611f2ee
|
@ -63,12 +63,12 @@ public class CardinalityAggregatorFactory implements AggregatorFactory
|
|||
public CardinalityAggregatorFactory(
|
||||
@JsonProperty("name") String name,
|
||||
@JsonProperty("fieldNames") final List<String> fieldNames,
|
||||
@JsonProperty("byRow") final Boolean byRow
|
||||
@JsonProperty("byRow") final boolean byRow
|
||||
)
|
||||
{
|
||||
this.name = name;
|
||||
this.fieldNames = fieldNames;
|
||||
this.byRow = byRow == null ? false : byRow;
|
||||
this.byRow = byRow;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -203,6 +203,12 @@ public class CardinalityAggregatorFactory implements AggregatorFactory
|
|||
return fieldNames;
|
||||
}
|
||||
|
||||
@JsonProperty
|
||||
public boolean isByRow()
|
||||
{
|
||||
return byRow;
|
||||
}
|
||||
|
||||
@Override
|
||||
public byte[] getCacheKey()
|
||||
{
|
||||
|
|
|
@ -19,16 +19,20 @@
|
|||
|
||||
package io.druid.query.aggregation.cardinality;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import com.google.common.base.Function;
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.Iterables;
|
||||
import com.google.common.collect.Iterators;
|
||||
import com.google.common.collect.Lists;
|
||||
import com.google.common.collect.Maps;
|
||||
import io.druid.jackson.DefaultObjectMapper;
|
||||
import io.druid.query.aggregation.Aggregator;
|
||||
import io.druid.query.aggregation.AggregatorFactory;
|
||||
import io.druid.query.aggregation.BufferAggregator;
|
||||
import io.druid.segment.DimensionSelector;
|
||||
import io.druid.segment.data.IndexedInts;
|
||||
import junit.framework.Assert;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
@ -378,4 +382,15 @@ public class CardinalityAggregatorTest
|
|||
0.05
|
||||
);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSerde() throws Exception
|
||||
{
|
||||
CardinalityAggregatorFactory factory = new CardinalityAggregatorFactory("billy", ImmutableList.of("b", "a", "c"), true);
|
||||
ObjectMapper objectMapper = new DefaultObjectMapper();
|
||||
Assert.assertEquals(
|
||||
factory,
|
||||
objectMapper.readValue(objectMapper.writeValueAsString(factory), AggregatorFactory.class)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue