yiguolei commented on code in PR #9754: URL: https://github.com/apache/incubator-doris/pull/9754#discussion_r883244505
########## fe/fe-core/src/main/java/org/apache/doris/catalog/Column.java: ########## @@ -75,6 +76,8 @@ public class Column implements Writable { private boolean isAllowNull; @SerializedName(value = "defaultValue") private String defaultValue; + @SerializedName(value = "isCurrentTimestamp") + private boolean isCurrentTimestamp; @SerializedName(value = "comment") Review Comment: 1. private FunctionCallExpr defaultValueExpr; 更通用一些, current timestamp --> now(); 2. 持久化: FunctionCallExpr --> writeTo 字节流, read(bytestream); hll default expr(持久化) -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org