jipeli opened a new issue, #26607: URL: https://github.com/apache/doris/issues/26607
### 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 master ### What's Wrong? 拉当前最新的master分支 `CREATE TABLE `metric_table` ( `datekey` INT NULL, `hour` INT NULL, `device_id` BITMAP BITMAP_UNION NOT NULL ) ENGINE=OLAP AGGREGATE KEY(`datekey`, `hour`) COMMENT 'OLAP' DISTRIBUTED BY HASH(`datekey`, `hour`) BUCKETS 1 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "min_load_replica_num" = "-1", "is_being_synced" = "false", "storage_format" = "V2", "light_schema_change" = "true", "disable_auto_compaction" = "false", "enable_single_replica_compaction" = "false" ); ` `with t as (select 1 as id) select * from t where id in (select bitmap_union(device_id) from metric_table) ;` <img width="1450" alt="企业微信截图_41a5c40c-20f4-477b-a0b0-0eb581f96760" src="https://github.com/apache/doris/assets/54889677/1ef5785c-59af-427e-a881-edff027e86c7"> ### What You Expected? supported bitmap type in subquery ### How to Reproduce? _No response_ ### 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: [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]
