zy-kkk opened a new issue, #9766: URL: https://github.com/apache/incubator-doris/issues/9766
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-doris/issues?q=is%3Aissue) and found no similar issues. ### Version commit 90e8cda5f20f512015611f76315f29c25e3ac016 ### What's Wrong? I created one AGGREGATE-replace table,When I use key1 as a filter in my query,The query result does not meet the expectation,The specific phenomenon is After the multiple insert,wait a few dozen seconds, the query result is null according to the key1 filter of the inserted data, This problem can currently be avoided by setting enable_vectorized_compaction = false ### What You Expected? I hope that when I set enable_vectorized_compaction = true, I won't have the problems I described above ### How to Reproduce? CREATE TABLE tmp.`agg_key_test` ( `stat_date` datetime, `base_code` varchar(100), `daily_cnt` int(11) REPLACE_IF_NOT_NULL NULL ) ENGINE=OLAP AGGREGATE KEY(`stat_date`,`base_code`) COMMENT "test" DISTRIBUTED BY HASH(`stat_date`,`base_code`) BUCKETS 10 PROPERTIES ( "replication_allocation" = "tag.location.default: 1", "in_memory" = "false", "storage_format" = "V2" ); insert into tmp.`agg_key_test` values('2022-05-20 14:00:00','03',100); select * from tmp.`agg_key_test` where stat_date = '2022-05-20 14:00:00'; ### 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