raminqaf commented on code in PR #28277:
URL: https://github.com/apache/flink/pull/28277#discussion_r3324234696


##########
flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/TableChange.java:
##########
@@ -1435,15 +1434,15 @@ public String toString() {
     class ModifyDefinitionQuery implements MaterializedTableChange {
 
         private final String originalQuery;
-        private final String definitionQuery;
+        private final String expandedQuery;
 
-        public ModifyDefinitionQuery(String originalQuery, String 
definitionQuery) {
+        public ModifyDefinitionQuery(String originalQuery, String 
expandedQuery) {
             this.originalQuery = originalQuery;
-            this.definitionQuery = definitionQuery;
+            this.expandedQuery = expandedQuery;
         }
 
-        public String getDefinitionQuery() {
-            return definitionQuery;
+        public String getExpandedQuery() {

Review Comment:
   IMO we should tolerate these type of changes after a minor release. For now 
reverted it get things unblocked.



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