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:
Zoltan Haindrich 2024-03-07 21:55:48 +01:00 committed by GitHub
parent 80cab51d50
commit aaa64832fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

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