mirror of https://github.com/apache/druid.git
Fix compile error in Eclipse 4.3.
The method dimEquals(String, String) is ambiguous for the type DimFilters.
This commit is contained in:
parent
76732c25f8
commit
1589909b9d
|
@ -166,7 +166,7 @@ public class IncrementalIndexStorageAdapterTest
|
||||||
.addDimension("billy")
|
.addDimension("billy")
|
||||||
.addDimension("sally")
|
.addDimension("sally")
|
||||||
.addAggregator(new LongSumAggregatorFactory("cnt", "cnt"))
|
.addAggregator(new LongSumAggregatorFactory("cnt", "cnt"))
|
||||||
.setDimFilter(DimFilters.dimEquals("sally", null))
|
.setDimFilter(DimFilters.dimEquals("sally", (String) null))
|
||||||
.build(),
|
.build(),
|
||||||
new IncrementalIndexStorageAdapter(index)
|
new IncrementalIndexStorageAdapter(index)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue