slinkydeveloper commented on a change in pull request #18182:
URL: https://github.com/apache/flink/pull/18182#discussion_r780263788



##########
File path: 
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/functions/casting/CastRulesTest.java
##########
@@ -1179,6 +1209,28 @@
         public Long b;
         public String c;
         public String[] d;
+
+        public MyStructuredType(long a, Long b, String c, String[] d) {
+            this.a = a;
+            this.b = b;
+            this.c = c;
+            this.d = d;
+        }
+
+        @Override
+        public String toString() {

Review comment:
       I wanna keep it, as it validates that this is not invoked (at least with 
the existing code)




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