nastra commented on code in PR #7880:
URL: https://github.com/apache/iceberg/pull/7880#discussion_r1251779560
##########
core/src/main/java/org/apache/iceberg/BaseMetastoreCatalog.java:
##########
@@ -312,4 +326,215 @@ private MetricsReporter metricsReporter() {
return metricsReporter;
}
+
+ protected ViewOperations newViewOps(TableIdentifier viewIdentifier) {
+ throw new UnsupportedOperationException("Not implemented: newViewOps");
+ }
+
+ @Override
+ public List<TableIdentifier> listViews(Namespace namespace) {
+ throw new UnsupportedOperationException("Not implemented: listViews");
+ }
+
+ @Override
+ public View loadView(TableIdentifier identifier) {
+ throw new UnsupportedOperationException("Not implemented: loadView");
Review Comment:
makes sense, I've updated `loadView()` but omitted the metadata handling
that `loadTable()` is doing
--
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]