Fix nullhandling in tests (#9119)

This commit is contained in:
Atul Mohan 2020-01-12 22:19:12 -06:00 committed by Clint Wylie
parent b642b1aa5b
commit ea51bc45bf
2 changed files with 4 additions and 2 deletions

View File

@ -37,6 +37,7 @@ import org.apache.druid.query.groupby.ResultRow;
import org.apache.druid.query.timeseries.TimeseriesResultValue;
import org.apache.druid.query.topn.DimensionAndMetricValueExtractor;
import org.apache.druid.query.topn.TopNResultValue;
import org.apache.druid.testing.InitializedNullHandlingTest;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Rule;
@ -56,7 +57,7 @@ import java.util.List;
*
*/
@RunWith(Parameterized.class)
public class SketchAggregationWithSimpleDataTest
public class SketchAggregationWithSimpleDataTest extends InitializedNullHandlingTest
{
@Rule
public final TemporaryFolder tempFolder = new TemporaryFolder();

View File

@ -40,6 +40,7 @@ import org.apache.druid.query.groupby.GroupByQueryRunnerTest;
import org.apache.druid.query.groupby.ResultRow;
import org.apache.druid.query.groupby.epinephelinae.GrouperTestUtil;
import org.apache.druid.query.groupby.epinephelinae.TestColumnSelectorFactory;
import org.apache.druid.testing.InitializedNullHandlingTest;
import org.junit.After;
import org.junit.Assert;
import org.junit.Rule;
@ -59,7 +60,7 @@ import java.util.List;
*
*/
@RunWith(Parameterized.class)
public class OldApiSketchAggregationTest
public class OldApiSketchAggregationTest extends InitializedNullHandlingTest
{
private final AggregationTestHelper helper;