Details
-
Bug
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
None
Description
Test case to reproduce:
@Test public void test() throws Exception { tableEnv.executeSql("create table src(x int)"); tableEnv.executeSql("create table dest(x int) partitioned by (p string,q string)"); tableEnv.executeSql("insert into dest select x,'0','0' from src order by x").await(); }