fix nullhandling exceptions related to test ordering (#9964)

follow-up to https://github.com/apache/druid/pull/9570
This commit is contained in:
Xavier Léauté 2020-06-02 10:13:54 -07:00 committed by GitHub
parent 56a9cad532
commit 4ecf1900c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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();