blob: 5be86ce77d516859de34dd3a3546384e068a7e6f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.drill;
import org.apache.drill.categories.SlowTest;
import org.apache.drill.test.BaseTestQuery;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@Category({SlowTest.class})
public class TestTpchDistributedStreaming extends BaseTestQuery {
private void testDistributed(String fileName) throws Exception{
String query = getFile(fileName);
test("alter session set `planner.slice_target` = 10; alter session set `planner.enable_hashjoin` = false; " +
"alter session set `planner.enable_hashagg` = false; " + query);
}
@Test
public void tpch01() throws Exception{
testDistributed("queries/tpch/01.sql");
}
@Test
@Ignore // DRILL-512
public void tpch02() throws Exception{
testDistributed("queries/tpch/02.sql");
}
@Test
public void tpch03() throws Exception{
testDistributed("queries/tpch/03.sql");
}
@Test
public void tpch04() throws Exception{
testDistributed("queries/tpch/04.sql");
}
@Test
public void tpch05() throws Exception{
testDistributed("queries/tpch/05.sql");
}
@Test
public void tpch06() throws Exception{
testDistributed("queries/tpch/06.sql");
}
@Test
public void tpch07() throws Exception{
testDistributed("queries/tpch/07.sql");
}
@Test
public void tpch08() throws Exception{
testDistributed("queries/tpch/08.sql");
}
@Test
public void tpch09() throws Exception{
testDistributed("queries/tpch/09.sql");
}
@Test
public void tpch10() throws Exception{
testDistributed("queries/tpch/10.sql");
}
@Test
@Ignore // cartesion problem
public void tpch11() throws Exception{
testDistributed("queries/tpch/11.sql");
}
@Test
public void tpch12() throws Exception{
testDistributed("queries/tpch/12.sql");
}
@Test
public void tpch13() throws Exception{
testDistributed("queries/tpch/13.sql");
}
@Test
public void tpch14() throws Exception{
testDistributed("queries/tpch/14.sql");
}
@Test
@Ignore // non-equality join
public void tpch15() throws Exception{
testDistributed("queries/tpch/15.sql");
}
@Test
@Ignore // invalid plan, due to Nulls value NOT IN sub-q
public void tpch16() throws Exception{
testDistributed("queries/tpch/16.sql");
}
@Test
@Ignore // non-equality join
public void tpch17() throws Exception{
testDistributed("queries/tpch/17.sql");
}
@Test
public void tpch18() throws Exception{
testDistributed("queries/tpch/18.sql");
}
@Test
@Ignore // non-equality join
public void tpch19() throws Exception{
testDistributed("queries/tpch/19.sql");
}
@Test
public void tpch19_1() throws Exception{
testDistributed("queries/tpch/19_1.sql");
}
@Test
public void tpch20() throws Exception{
testDistributed("queries/tpch/20.sql");
}
@Test
public void tpch21() throws Exception{
testDistributed("queries/tpch/21.sql");
}
@Test
@Ignore // DRILL-518
public void tpch22() throws Exception{
testDistributed("queries/tpch/22.sql");
}
}