rahil-c opened a new issue, #19788: URL: https://github.com/apache/hudi/issues/19788
Test compilation of `hudi-spark_2.12` fails on current master. `TestDataSourceUtils.java` uses `Map<String, String>` at line 136, but `import java.util.Map;` is not present, so the module does not compile: ``` [ERROR] .../TestDataSourceUtils.java:[136,5] cannot find symbol [ERROR] symbol: class Map [ERROR] location: class org.apache.hudi.TestDataSourceUtils ``` Reproduce with: ``` mvn test-compile -pl hudi-spark-datasource/hudi-spark -Dspark3.5 -Dscala-2.12 ``` The import was dropped in 29636dd2 along with an unrelated cleanup that removed the other use of `Map` in that file, leaving the one at line 136 uncovered. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
