HappenLee commented on code in PR #50863:
URL: https://github.com/apache/doris/pull/50863#discussion_r2094816371
##########
fe/fe-core/src/main/java/org/apache/doris/dictionary/Dictionary.java:
##########
@@ -297,6 +302,30 @@ public long getSrcVersion() {
return srcVersion;
}
+ public void updateLatestInvalidVersion(long value) {
+ latestInvalidVersion = Math.max(latestInvalidVersion, value);
+ }
+
+ /**
+ * if has latestInvalidVersion and the base table's data not changed, we
can skip update.
+ */
+ public boolean baseDataMaybeValid() {
Review Comment:
checkBaseDataValid
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]