zddr commented on code in PR #29989: URL: https://github.com/apache/doris/pull/29989#discussion_r1468279266
########## fe/fe-core/src/main/java/org/apache/doris/catalog/OlapTable.java: ########## @@ -2535,4 +2537,37 @@ public List<Tablet> getAllTablets() throws AnalysisException { } return tablets; } + + @Override + public PartitionType getPartitionType() { + return partitionInfo.getType(); + } + + @Override + public Map<Long, PartitionItem> getPartitionItems() { + return getPartitionInfo().getIdToItem(false); + } + + @Override + public long getPartitionLastModifyTime(long partitionId, PartitionItem item) throws AnalysisException { + return getPartitionOrAnalysisException(partitionId).getVisibleVersionTimeIgnoreInit(); + } + + @Override + public long getLastModifyTime() { Review Comment: olap table has same problem,resolve together with other PRs -- 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