xx789633 commented on code in PR #2161:
URL: https://github.com/apache/fluss/pull/2161#discussion_r2644922524
##########
fluss-common/src/main/java/org/apache/fluss/utils/json/ColumnJsonSerde.java:
##########
@@ -50,6 +51,10 @@ public void serialize(Schema.Column column, JsonGenerator
generator) throws IOEx
generator.writeStringField(COMMENT, column.getComment().get());
}
generator.writeNumberField(ID, column.getColumnId());
+ if (column.isAutoInc()) {
Review Comment:
According to Jark's suggestion in
https://github.com/apache/fluss/pull/1887#discussion_r2581883655, we prefer not
to introduce any extra metadata information at the column level.
--
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]