hackergin commented on a change in pull request #16588:
URL: https://github.com/apache/flink/pull/16588#discussion_r677930660
##########
File path:
flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/Column.java
##########
@@ -108,6 +119,13 @@ public String asSummaryString() {
sb.append(" ");
sb.append(e);
});
+ getComment()
+ .ifPresent(
+ c -> {
+ sb.append(" COMMENT '");
+ sb.append(c);
Review comment:
@Airblader thanks for the review, I update the code, and add the
related test case.
--
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]