tangbinyeer opened a new issue, #30225: URL: https://github.com/apache/doris/issues/30225
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no similar issues. ### Version 2.0.3 ### What's Wrong? 以下是根据场景进行抽象的描述 建立聚合模型表: `CREATE TABLE test ( a VARCHAR(64), b VARCHAR(64), c VARCHAR(64), d BITMAP BITMAP_UNION, e BIGINT SUM ) AGGREGATE KEY(a, b, c);` 物化视图: `CREATE MATERIALIZED VIEW mv_test AS SELECT b, c, bitmap_union(d), sum(e) FROM test GROUP by b, c; ` 插入数据(省略); EXPLAIN 查询: `EXPLAIN SELECT b, c, bitmap_union(d), sum(e) FROM test GROUP by b, c;` 使用不上物化视图mv_test,原因是有bitmap_union聚合。 以下是真实业务的建表以及视图和explain结果截图: 基表:  物化视图:  查询explain,带bitmap_union,查询不能命中物化视图,不带即可命中:     ### What You Expected? 查询字段有bitmap_union的字段也能命中物化视图 ### How to Reproduce? 以上 ### Anything Else? _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://www.apache.org/foundation/policies/conduct) -- 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.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