mchades commented on code in PR #8922:
URL: https://github.com/apache/gravitino/pull/8922#discussion_r2473872484
##########
catalogs/catalog-generic-lakehouse/src/main/java/org/apache/gravitino/catalog/lakehouse/LakehouseCatalogOperations.java:
##########
@@ -22,4 +22,18 @@
import org.apache.gravitino.connector.CatalogOperations;
import org.apache.gravitino.rel.TableCatalog;
+/**
+ * Interface for detailed lakehouse catalog operations, combining catalog
operations and table
+ * catalog. {@link GenericLakehouseCatalog} will try to use this interface to
provide detailed
+ * lakehouse catalog operations.
+ *
+ * <pre>
+ * GenericLakehouseCatalog.createTable()
+ * -> LakehouseCatalogOperations.createTable()
+ * -> LanceTableOperations.createTable()
+ * -> IcebergTableOperations.createTable()
+ * -> DeltaTableOperations.createTable()
+ * ...
+ * </pre>
Review Comment:
Oh, they have different indentations in the comment, causing ambiguity
--
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]