xiangyuf commented on code in PR #26361: URL: https://github.com/apache/flink/pull/26361#discussion_r2041134455
########## flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/plan/nodes/exec/serde/DynamicTableSinkSpecSerdeTest.java: ########## @@ -173,7 +174,36 @@ static Stream<DynamicTableSinkSpec> testDynamicTableSinkSpecSerde() { RowType.of(new BigIntType(), new IntType()))), null); - return Stream.of(spec1, spec2, spec3); + Map<String, String> options4 = new HashMap<>(); + options4.put("connector", TestValuesTableFactory.IDENTIFIER); + int[][] targetColumnIndices = new int[][] {{0}, {1}}; + + final ResolvedSchema resolvedSchema4 = + new ResolvedSchema( + Arrays.asList( + Column.physical("a", DataTypes.BIGINT()), Review Comment: @davidradl thx for comments. However, nested columns is not supported by target columns currently. See more in this issue: https://issues.apache.org/jira/browse/FLINK-31301 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org