jerqi commented on code in PR #9787:
URL: https://github.com/apache/gravitino/pull/9787#discussion_r2719432902


##########
catalogs/catalog-lakehouse-iceberg/src/main/java/org/apache/gravitino/catalog/lakehouse/iceberg/IcebergCatalogOperations.java:
##########
@@ -620,6 +623,30 @@ public void testConnection(
     }
   }
 
+  /**
+   * Load view metadata from the Iceberg catalog.
+   *
+   * <p>Delegates to the underlying Iceberg REST catalog to load view metadata.
+   *
+   * @param ident The identifier of the view to load.
+   * @return The loaded view metadata.
+   * @throws org.apache.gravitino.exceptions.NoSuchViewException If the view 
does not exist.
+   */
+  @Override
+  public View loadView(org.apache.gravitino.NameIdentifier ident)
+      throws org.apache.gravitino.exceptions.NoSuchViewException {
+    try {
+      org.apache.iceberg.rest.responses.LoadViewResponse response =

Review Comment:
   Could u avoid use ` org.apache.iceberg.rest.responses.LoadViewResponse`?



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