kbendick commented on code in PR #5118:
URL: https://github.com/apache/iceberg/pull/5118#discussion_r908766681
##########
core/src/main/java/org/apache/iceberg/rest/CatalogHandlers.java:
##########
@@ -170,16 +171,20 @@ public static LoadTableResponse stageTableCreate(Catalog
catalog, Namespace name
properties.putAll(request.properties());
String location;
+ String metadataLocation;
if (request.location() != null) {
location = request.location();
+ metadataLocation = location + "/metadata";
} else {
- location = catalog.buildTable(ident, request.schema())
+ Table tbl = catalog.buildTable(ident, request.schema())
Review Comment:
Changed to table.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]