ldadima commented on code in PR #27907:
URL: https://github.com/apache/flink/pull/27907#discussion_r3070938142


##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/operations/converters/SqlNodeConvertUtils.java:
##########
@@ -87,7 +87,7 @@ static CatalogView toCatalogView(
                 context.getSqlValidator().getNamespace(validateQuery);
         validateDuplicatedColumnNames(validateQuery, viewFields, 
validatedNamespace);
 
-        String expandedQuery = context.toQuotedSqlString(validateQuery);
+        String expandedQuery = context.expandSqlIdentifiers(originalQuery);

Review Comment:
   The problem, as I see it, is somewhat similar to the LATERAL issue: 
`expandSqlIdentifiers` was being used until the CALCITE version (problem 
resolved) was updated.
   
   Is correct usage of `MATCH_RECOGNIZE` in `CREATE VIEW` syntax important to 
us? If so, we can keep using `expandSqlIdentifiers` until upgrading CALCITE 
version (1.42.0).
   What do you think?



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