HappenLee commented on code in PR #42998: URL: https://github.com/apache/doris/pull/42998#discussion_r1825654573
########## be/src/olap/column_predicate.h: ########## @@ -303,6 +301,14 @@ class ColumnPredicate { } bool always_true() const { return _always_true; } + // Return whether the ColumnPredicate was created by a runtime filter. + // If true, it was definitely created by a runtime filter. + // If false, it may still have been created by a runtime filter, + // as certain filters like "in filter" generate key ranges instead of ColumnPredicate. + // is_runtime_filter uses _can_ignore, except for BitmapFilter, + // as BitmapFilter cannot ignore data. + Review Comment: remove unless space -- 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