Initialize null handling in CompressedBigDecimalAggregatorTimeseriesTestBase to fix failing test(#15252)

This commit is contained in:
Laksh Singla 2023-10-25 20:26:46 +05:30 committed by GitHub
parent c5fa649ea5
commit 207398a47d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -27,6 +27,7 @@ import org.apache.druid.java.util.common.guava.Sequence;
import org.apache.druid.query.Result;
import org.apache.druid.query.aggregation.AggregationTestHelper;
import org.apache.druid.query.timeseries.TimeseriesResultValue;
import org.apache.druid.testing.InitializedNullHandlingTest;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.junit.BeforeClass;
@ -46,7 +47,7 @@ import static org.hamcrest.collection.IsMapWithSize.aMapWithSize;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertThat;
public abstract class CompressedBigDecimalAggregatorTimeseriesTestBase
public abstract class CompressedBigDecimalAggregatorTimeseriesTestBase extends InitializedNullHandlingTest
{
private final AggregationTestHelper helper;