pvary commented on code in PR #18106:
URL: https://github.com/apache/iceberg/pull/18106#discussion_r4007658551
##########
flink/v2.3/flink/src/main/java/org/apache/iceberg/flink/FlinkCatalog.java:
##########
@@ -366,6 +366,9 @@ public List<String> listViews(String databaseName)
.toList();
} catch (NoSuchNamespaceException e) {
throw new DatabaseNotExistException(getName(), databaseName, e);
+ } catch (UnsupportedOperationException e) {
+ // implements ViewCatalog but rejects view operations in JDBC catalog
with V0 schema
+ return Collections.emptyList();
Review Comment:
Shall we at least log?
--
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]