gaborkaszab commented on code in PR #14035:
URL: https://github.com/apache/iceberg/pull/14035#discussion_r2341240240


##########
core/src/test/java/org/apache/iceberg/rest/RESTCatalogAdapter.java:
##########
@@ -425,10 +429,23 @@ public <T extends RESTResponse> T handleRequest(
 
       case LOAD_TABLE:
         {
-          LoadTableResponse resp = CatalogHandlers.loadTable(catalog, 
tableIdentFromPathVars(vars));
+          TableIdentifier ident = tableIdentFromPathVars(vars);
 
-          responseHeaders.accept(
-              ImmutableMap.of(HttpHeaders.ETAG, 
ETagProvider.of(resp.metadataLocation())));
+          LoadTableResponse resp = CatalogHandlers.loadTable(catalog, ident);

Review Comment:
   I created a PR to rename all of these together: 
https://github.com/apache/iceberg/pull/14051
   I prefer not to do it partially here as these variables weren't introduced 
in this PR anyway.



-- 
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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to