FANNG1 commented on issue #6382: URL: https://github.com/apache/gravitino/issues/6382#issuecomment-2629203643
For solution one, suggest solution in [IcebergCatalogWrapper](https://github.com/apache/gravitino/blob/main/iceberg/iceberg-common/src/main/java/org/apache/gravitino/iceberg/common/ops/IcebergCatalogWrapper.java#L234-L236), and welcome contribute. ``` public ListTablesResponse listView(Namespace namespace) { if (!catalog instanceof ViewCatalog) { // return empty table list } return CatalogHandlers.listViews(getViewCatalog(), namespace); } ``` -- 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]
