undo unrealted change

This commit is contained in:
Zoltan Haindrich 2024-07-19 19:16:46 +00:00
parent f7247e1bb7
commit d227029b6b
1 changed files with 0 additions and 23 deletions

View File

@ -216,29 +216,6 @@ public class CalciteTableAppendTest extends BaseCalciteQueryTest
.run();
}
@Test
public void testAppendCompatibleColumns2()
{
// dim3 has different type (string/long) in foo/foo2
testBuilder()
.sql("select u.dim3,f.dim3 from TABLE(APPEND('foo','foo')) u join foo f on u.dim3 is not distinct from f.dim3")
.expectedResults(
ResultMatchMode.RELAX_NULLS,
ImmutableList.of(
new Object[] {"11"},
new Object[] {"12"},
new Object[] {"10"},
new Object[] {"[\"a\",\"b\"]"},
new Object[] {"[\"b\",\"c\"]"},
new Object[] {"d"},
new Object[] {""},
new Object[] {null},
new Object[] {null}
)
)
.run();
}
@Test
public void testAppendNoTableIsInvalid()
{