morningman commented on a change in pull request #7348:
URL: https://github.com/apache/incubator-doris/pull/7348#discussion_r764973704
##########
File path: be/src/olap/collect_iterator.h
##########
@@ -67,6 +67,16 @@ class CollectIterator {
virtual OLAPStatus next(const RowCursor** row, bool* delete_flag) = 0;
virtual ~LevelIterator() = 0;
+
+ bool need_skip() const {
+ return _skip_row;
+ }
+
+ void set_need_skip(bool skip) {
+ _skip_row = skip;
+ }
+
+ bool _skip_row = false;
Review comment:
Add comment for this field
--
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]