yangzhg commented on code in PR #11646: URL: https://github.com/apache/doris/pull/11646#discussion_r948569420
########## fe/fe-core/src/main/java/org/apache/doris/analysis/MVRefreshInfo.java: ########## @@ -60,8 +66,41 @@ public String toString() { return sb.toString(); } + public boolean isNeverRefresh() { + return neverRefresh; + } + + public RefreshMethod getRefreshMethod() { + return refreshMethod; + } + + public MVRefreshTriggerInfo getTriggerInfo() { + return triggerInfo; + } + + @Override + public void write(DataOutput out) throws IOException { Review Comment: better use json format ########## fe/fe-core/src/main/java/org/apache/doris/analysis/MVRefreshIntervalTriggerInfo.java: ########## @@ -51,4 +62,24 @@ public String toString() { } return sb.toString(); } + + @Override + public void write(DataOutput out) throws IOException { Review Comment: better use json format -- 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