mirror of https://github.com/apache/druid.git
Merge pull request #2729 from jon-wei/fix_hyperunique_comparator
Fix HyperUniquesAggregatorFactory comparator
This commit is contained in:
commit
0dae28b6af
|
@ -21,6 +21,7 @@ package io.druid.query.aggregation.hyperloglog;
|
|||
|
||||
import com.fasterxml.jackson.annotation.JsonCreator;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.google.common.collect.Ordering;
|
||||
import com.metamx.common.IAE;
|
||||
import com.metamx.common.StringUtils;
|
||||
import io.druid.query.aggregation.Aggregator;
|
||||
|
@ -106,20 +107,7 @@ public class HyperUniquesAggregatorFactory extends AggregatorFactory
|
|||
@Override
|
||||
public Comparator getComparator()
|
||||
{
|
||||
return new Comparator<HyperLogLogCollector>()
|
||||
{
|
||||
@Override
|
||||
public int compare(HyperLogLogCollector lhs, HyperLogLogCollector rhs)
|
||||
{
|
||||
if(lhs == null) {
|
||||
return -1;
|
||||
}
|
||||
if(rhs == null) {
|
||||
return 1;
|
||||
}
|
||||
return lhs.compareTo(rhs);
|
||||
}
|
||||
};
|
||||
return Ordering.<HyperLogLogCollector>natural().nullsFirst();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -377,17 +377,17 @@ public class TopNQueryRunnerTest
|
|||
new TopNResultValue(
|
||||
Arrays.<Map<String, Object>>asList(
|
||||
ImmutableMap.<String, Object>builder()
|
||||
.put("market", "total_market")
|
||||
.put("uniques", 0)
|
||||
.build(),
|
||||
.put("market", "spot")
|
||||
.put("uniques", 0)
|
||||
.build(),
|
||||
ImmutableMap.<String, Object>builder()
|
||||
.put("market", "spot")
|
||||
.put("uniques", 0)
|
||||
.build(),
|
||||
.put("market", "total_market")
|
||||
.put("uniques", 0)
|
||||
.build(),
|
||||
ImmutableMap.<String, Object>builder()
|
||||
.put("market", "upfront")
|
||||
.put("uniques", 0)
|
||||
.build()
|
||||
.put("market", "upfront")
|
||||
.put("uniques", 0)
|
||||
.build()
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue