wuchong commented on code in PR #1887:
URL: https://github.com/apache/fluss/pull/1887#discussion_r2596100254
##########
fluss-common/src/main/java/org/apache/fluss/utils/json/ColumnJsonSerde.java:
##########
@@ -60,6 +60,11 @@ public Schema.Column deserialize(JsonNode node) {
DataType dataType =
DataTypeJsonSerde.INSTANCE.deserialize(node.get(DATA_TYPE));
+ Schema.Column column = new Schema.Column(columnName, dataType);
+ if (node.hasNonNull(COMMENT)) {
+ column = column.withComment(node.get(COMMENT).asText());
+ }
Review Comment:
This change is not necessary. I reverted this.
--
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]