yiguolei commented on code in PR #66472:
URL: https://github.com/apache/doris/pull/66472#discussion_r3771667540


##########
be/src/storage/segment/segment_iterator.cpp:
##########
@@ -499,6 +478,47 @@ Status SegmentIterator::_init_impl(const 
StorageReadOptions& opts) {
     return Status::OK();
 }
 
+void SegmentIterator::_init_column_states() {
+    std::set<std::shared_ptr<const ColumnPredicate>> delete_predicates;
+    
_opts.delete_condition_predicates->get_all_column_predicate(delete_predicates);
+    for (const auto& predicate : delete_predicates) {
+        auto cid = predicate->column_id();
+        _column_states[cid].is_delete_predicate = true;
+    }
+
+    _rebuild_row_predicate_columns();
+}
+
+void SegmentIterator::_rebuild_row_predicate_columns() {

Review Comment:
   row delete 是啥意思?



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