dawidwys commented on code in PR #25952:
URL: https://github.com/apache/flink/pull/25952#discussion_r1918268860


##########
flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/ResolvedCatalogView.java:
##########
@@ -37,10 +40,18 @@ public final class ResolvedCatalogView
 
     private final ResolvedSchema resolvedSchema;
 
+    private final @Nullable CatalogView resolvedView;
+
     public ResolvedCatalogView(CatalogView origin, ResolvedSchema 
resolvedSchema) {
+        this(origin, resolvedSchema, null);
+    }
+
+    public ResolvedCatalogView(
+            CatalogView origin, ResolvedSchema resolvedSchema, CatalogView 
resolvedView) {

Review Comment:
   We do not. If you think it's fine we pass a different object than we 
received I can adapt the code base to do so.



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