vikramahuja1001 commented on code in PR #5993: URL: https://github.com/apache/hive/pull/5993#discussion_r2229471341
########## iceberg/iceberg-handler/src/main/java/org/apache/iceberg/mr/hive/HiveTableUtil.java: ########## @@ -169,7 +169,10 @@ private static List<DataFile> getDataFiles(RemoteIterator<LocatedFileStatus> fil dataFile -> { StructLike structLike = dataFile.partition(); for (int pos : stringFields) { - structLike.set(pos, FileUtils.unescapePathName(structLike.get(pos, String.class))); + String val = structLike.get(pos, String.class); Review Comment: @deniskuzZ , simple reverting the code part of HIVE-27367 works in this case. I have reverted the code but have kept the test case. Also added new tests as well as a part of this PR. -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org