mirror of https://github.com/apache/druid.git
Fix compile error in SearchBinaryFnTest (#3201)
This commit is contained in:
parent
b24425a280
commit
f3a3662133
|
@ -297,7 +297,7 @@ public class SearchBinaryFnTest
|
||||||
);
|
);
|
||||||
|
|
||||||
Result<SearchResultValue> actual = new SearchBinaryFn(
|
Result<SearchResultValue> actual = new SearchBinaryFn(
|
||||||
searchSortSpec, QueryGranularity.ALL, Integer.MAX_VALUE).apply(r1, r2);
|
searchSortSpec, QueryGranularities.ALL, Integer.MAX_VALUE).apply(r1, r2);
|
||||||
Assert.assertEquals(expected.getTimestamp(), actual.getTimestamp());
|
Assert.assertEquals(expected.getTimestamp(), actual.getTimestamp());
|
||||||
assertSearchMergeResult(expected.getValue(), actual.getValue());
|
assertSearchMergeResult(expected.getValue(), actual.getValue());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue