snuyanzin commented on code in PR #27199:
URL: https://github.com/apache/flink/pull/27199#discussion_r2501061746


##########
flink-table/flink-table-api-java/src/test/java/org/apache/flink/table/catalog/CatalogBaseTableResolutionTest.java:
##########
@@ -436,7 +440,8 @@ private static CatalogMaterializedTable 
catalogMaterializedTable() {
         final String comment = "This is an example materialized table.";
         final List<String> partitionKeys = Arrays.asList("region", "county");
 
-        final String definitionQuery =
+        final String originalQuery = "SELECT id, region, county FROM T";
+        final String expandedQuery =
                 String.format(
                         "SELECT id, region, county FROM %s.%s.T",
                         DEFAULT_CATALOG, DEFAULT_DATABASE);

Review Comment:
   Isn't it same as in constant?
   Why can't they be reused here?



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