JingsongLi commented on code in PR #4944:
URL: https://github.com/apache/paimon/pull/4944#discussion_r1921899315
##########
paimon-core/src/main/java/org/apache/paimon/catalog/CatalogUtils.java:
##########
@@ -265,10 +266,11 @@ private static FormatTable toFormatTable(Identifier
identifier, TableSchema sche
.build();
}
- private static ObjectTable toObjectTable(Catalog catalog, FileStoreTable
underlyingTable) {
+ private static ObjectTable toObjectTable(
+ Catalog catalog, Identifier identifier, FileStoreTable
underlyingTable) {
CoreOptions options = underlyingTable.coreOptions();
String objectLocation = options.objectLocation();
- FileIO objectFileIO = catalog.fileIO(new Path(objectLocation));
+ FileIO objectFileIO = catalog.fileIO(identifier, new
Path(objectLocation));
Review Comment:
You don't need to modify fileio for object table now, we can adjust it later.
--
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]