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


##########
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:
   This shouldn't be a problem. The most important method is the SQL string. 
Are we passing this?



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