wsjz commented on code in PR #19098: URL: https://github.com/apache/doris/pull/19098#discussion_r1185636861
########## fe/fe-core/src/main/java/org/apache/doris/external/hive/util/HiveUtil.java: ########## @@ -204,8 +205,8 @@ public static boolean isSplittable(InputFormat<?, ?> inputFormat, FileSystem fil } try { method.setAccessible(true); - return (boolean) method.invoke(inputFormat, fileSystem, path); - } catch (InvocationTargetException | IllegalAccessException e) { + return (boolean) method.invoke(inputFormat, path.getFileSystem(jobConf), path); Review Comment: we should use native hadoop fs here, RemoteFileSystem.getByConf() just return our fs. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org