yujun777 commented on code in PR #64776:
URL: https://github.com/apache/doris/pull/64776#discussion_r3490016910


##########
fe/fe-catalog/src/main/java/org/apache/doris/catalog/Column.java:
##########
@@ -500,6 +502,11 @@ public boolean isSkipBitmapColumn() {
                 && nameEquals(SKIP_BITMAP_COL, true);
     }
 
+    public boolean isCommitTsoColumn() {
+        // aggregationType is NONE for duplicate table and unique table with 
merge on write.
+        return !visible && aggregationType == AggregateType.NONE && 
nameEquals(COMMIT_TSO_COL, true);

Review Comment:
   maybe can remove: "!visible && aggregationType == AggregateType.NONE",  just 
for simplify consideration.



-- 
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]

Reply via email to