mirror of https://github.com/apache/druid.git
fix nullhandling exceptions related to test ordering (#9964)
follow-up to https://github.com/apache/druid/pull/9570
This commit is contained in:
parent
56a9cad532
commit
4ecf1900c3
|
@ -33,6 +33,7 @@ import org.apache.druid.query.TestQueryRunners;
|
|||
import org.apache.druid.query.aggregation.DoubleMaxAggregatorFactory;
|
||||
import org.apache.druid.query.aggregation.DoubleMinAggregatorFactory;
|
||||
import org.apache.druid.segment.TestHelper;
|
||||
import org.apache.druid.testing.InitializedNullHandlingTest;
|
||||
import org.junit.AfterClass;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
|
@ -46,7 +47,7 @@ import java.util.List;
|
|||
import java.util.Map;
|
||||
|
||||
@RunWith(Parameterized.class)
|
||||
public class TopNUnionQueryTest
|
||||
public class TopNUnionQueryTest extends InitializedNullHandlingTest
|
||||
{
|
||||
private static final Closer RESOURCE_CLOSER = Closer.create();
|
||||
|
||||
|
|
Loading…
Reference in New Issue