mirror of https://github.com/apache/druid.git
Disable DecoupledPlanningCalciteJoinQueryTest until it gets fixed (#16070)
Recently this test started other tests from executing by triggering a bug somewhere in surefire. This patch disables the testcases in case of non-sql compat mode.
This commit is contained in:
parent
80cab51d50
commit
aaa64832fd
|
@ -29,6 +29,7 @@ import org.apache.druid.sql.calcite.util.SqlTestFramework;
|
|||
import org.apache.druid.sql.calcite.util.SqlTestFramework.PlannerComponentSupplier;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
import org.junit.rules.TestRule;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
|
@ -40,6 +41,9 @@ public class DecoupledPlanningCalciteJoinQueryTest extends CalciteJoinQueryTest
|
|||
@Rule(order = 0)
|
||||
public NotYetSupportedProcessor decoupledIgnoreProcessor = new NotYetSupportedProcessor();
|
||||
|
||||
@Rule
|
||||
public TestRule sqlCompatOnly = DisableUnless.SQL_COMPATIBLE;
|
||||
|
||||
private static final ImmutableMap<String, Object> CONTEXT_OVERRIDES =
|
||||
ImmutableMap.<String, Object>builder()
|
||||
.putAll(BaseCalciteQueryTest.QUERY_CONTEXT_DEFAULT)
|
||||
|
|
Loading…
Reference in New Issue