JingsongLi commented on code in PR #4891:
URL: https://github.com/apache/paimon/pull/4891#discussion_r1921890756


##########
paimon-core/src/main/java/org/apache/paimon/table/FileStoreTableFactory.java:
##########
@@ -38,12 +37,8 @@
 public class FileStoreTableFactory {
 
     public static FileStoreTable create(CatalogContext context) {
-        FileIO fileIO;
-        try {
-            fileIO = FileIO.get(CoreOptions.path(context.options()), context);
-        } catch (IOException e) {
-            throw new UncheckedIOException(e);
-        }
+        FileIO fileIO = new ResolvingFileIO();

Review Comment:
   I think it could be more direct, add catalog option: resolving-fileio.enabled



-- 
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]

Reply via email to