davidradl commented on code in PR #26452:
URL: https://github.com/apache/flink/pull/26452#discussion_r2042073767


##########
flink-table/flink-table-common/src/main/java/org/apache/flink/table/connector/ChangelogMode.java:
##########
@@ -149,7 +149,7 @@ public String toString() {
             return kinds.toString();
         } else {
             return kinds.stream()
-                    .map(kind -> kind == RowKind.DELETE ? "~D" : 
kind.toString())
+                    .map(kind -> kind == RowKind.DELETE ? "~DELETE" : 
kind.toString())

Review Comment:
   nit: The change is fine - I wondered what you thought of having the toString 
as `~DELETE (Partial Delete)`, just to aid readability in the `toString`.      



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to