mirror of
https://github.com/apache/druid.git
synced 2025-02-09 11:34:54 +00:00
Fix compilation failure due to missing constant MISSING_JOIN_CONVERSION (#16050)
* Reintroduce variable MISSING_JOIN_CONVERSION * Remove redundant constant MISSING_JOIN_CONVERSION2 * Correct fix to address failing tests
This commit is contained in:
parent
ddd9da2e09
commit
cf9bc507f6
@ -15307,7 +15307,6 @@ public class CalciteQueryTest extends BaseCalciteQueryTest
|
|||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotYetSupported(Modes.MISSING_JOIN_CONVERSION)
|
|
||||||
@Test
|
@Test
|
||||||
public void testScanAndSortOnJoin()
|
public void testScanAndSortOnJoin()
|
||||||
{
|
{
|
||||||
@ -15340,7 +15339,7 @@ public class CalciteQueryTest extends BaseCalciteQueryTest
|
|||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
@NotYetSupported(Modes.MISSING_JOIN_CONVERSION)
|
@NotYetSupported(Modes.WINDOW_OPERATOR_QUERY_ON_UNSUPPORTED_DATASOURCE)
|
||||||
@Test
|
@Test
|
||||||
public void testWindowingOverJoin()
|
public void testWindowingOverJoin()
|
||||||
{
|
{
|
||||||
|
@ -93,6 +93,7 @@ public @interface NotYetSupported
|
|||||||
T_ALLTYPES_ISSUES(AssertionError.class, "(t_alltype|allTypsUniq|fewRowsAllData).parquet.*Verifier.verify"),
|
T_ALLTYPES_ISSUES(AssertionError.class, "(t_alltype|allTypsUniq|fewRowsAllData).parquet.*Verifier.verify"),
|
||||||
RESULT_MISMATCH(AssertionError.class, "(assertResulEquals|AssertionError: column content mismatch)"),
|
RESULT_MISMATCH(AssertionError.class, "(assertResulEquals|AssertionError: column content mismatch)"),
|
||||||
UNSUPPORTED_NULL_ORDERING(DruidException.class, "(A|DE)SCENDING ordering with NULLS (LAST|FIRST)"),
|
UNSUPPORTED_NULL_ORDERING(DruidException.class, "(A|DE)SCENDING ordering with NULLS (LAST|FIRST)"),
|
||||||
|
WINDOW_OPERATOR_QUERY_ON_UNSUPPORTED_DATASOURCE(DruidException.class, "WindowOperatorQuery must run on top of a query or inline data source"),
|
||||||
UNION_WITH_COMPLEX_OPERAND(DruidException.class, "Only Table and Values are supported as inputs for Union"),
|
UNION_WITH_COMPLEX_OPERAND(DruidException.class, "Only Table and Values are supported as inputs for Union"),
|
||||||
UNION_MORE_STRICT_ROWTYPE_CHECK(DruidException.class, "Row signature mismatch in Union inputs"),
|
UNION_MORE_STRICT_ROWTYPE_CHECK(DruidException.class, "Row signature mismatch in Union inputs"),
|
||||||
JOIN_CONDITION_NOT_PUSHED_CONDITION(DruidException.class, "SQL requires a join with '.*' condition"),
|
JOIN_CONDITION_NOT_PUSHED_CONDITION(DruidException.class, "SQL requires a join with '.*' condition"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user