cambyzju opened a new issue, #40390: URL: https://github.com/apache/doris/issues/40390
### 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.x => 2.1.6 ### What's Wrong? Wrong data ### What You Expected? correct data ### How to Reproduce? 1、Create test table in Doris2.0 cluster and disable auto compaction: ``` CREATE TABLE `test_backup` ( `k1` INT NULL, `k2` INT NULL, `v` INT NULL ) ENGINE=OLAP DUPLICATE KEY(`k1`) DISTRIBUTED BY HASH(`k1`) BUCKETS 1 PROPERTIES ( "disable_auto_compaction" = "true" ); ``` 2、insert and delete some data ``` insert into test_backup values(1,2,3),(4,5,6); delete from test_backup where k1>=1 and k1<=4 and v in (5,6); insert into test_backup values(7,8,9),(10,11,12); delete from test_backup where k1>=10 and k1<=10 and v in (8,9); insert into test_backup values(13,14,15),(16,17,18); delete from test_backup where k1>=13 and k1<=16 and v in (15,16,17,18); insert into test_backup values(19,20,21); > select * from test_backup; +------+------+------+ | k1 | k2 | v | +------+------+------+ | 1 | 2 | 3 | | 7 | 8 | 9 | | 10 | 11 | 12 | | 19 | 20 | 21 | +------+------+------+ 4 rows in set (0.01 sec) ``` 3、backup this table, then restore it in Doris2.1 cluster, we found the data is wrong: ``` > select * from test_backup; +------+------+------+ | k1 | k2 | v | +------+------+------+ | 1 | 2 | 3 | | 4 | 5 | 6 | | 7 | 8 | 9 | | 10 | 11 | 12 | | 13 | 14 | 15 | | 19 | 20 | 21 | +------+------+------+ ``` ### 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