PrabhuJoseph commented on issue #8930: URL: https://github.com/apache/iceberg/issues/8930#issuecomment-1806858264
Flink1.17 used to allow conversion of collection (List) data types `ARRAY<INT NOT NULL>` and `ARRAY<INT>` into `Object[]` or `Integer[]`. But Flink1.18 fixed it in https://issues.apache.org/jira/browse/FLINK-31835 which allows casting of `ARRAY<INT> `into `Object[]` or `Integer[]` and `ARRAY<INT NOT NULL>` into `int[]`. Reference: https://github.com/apache/flink/pull/22485/files#diff-3462f451bf210e099fbea27237e809d83b134c4e9859c2b54d5974e1d786c3a6R199 The failing iceberg unit test needs to be fixed to handle this case. I have patch which fixes the same. Let me know when we start working on this, i can share the patch for the unit test failure. ``` joprabhu@88665a14a66d Aws157Iceberg % ./gradlew -DsparkVersions=$SPARK_VERSION -DhiveVersions=$HIVE_MAJOR_VERSION -DflinkVersions=$FLINK_MAJOR_VERSION :iceberg-flink:iceberg-flink-1.18:test Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. See https://docs.gradle.org/8.1.1/userguide/command_line_interface.html#sec:command_line_warnings BUILD SUCCESSFUL in 23m 28s ``` -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org