mirror of https://github.com/apache/druid.git
Fix nullhandling in tests (#9119)
This commit is contained in:
parent
b642b1aa5b
commit
ea51bc45bf
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue