sollhui opened a new issue, #49333: URL: https://github.com/apache/doris/issues/49333
### 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? Create table ``` CREATE TABLE IF NOT EXISTS test_cloud_mow_new_tablet_compaction ( `k1` int NOT NULL, `c1` int, `c2` int, `c3` int )UNIQUE KEY(k1) DISTRIBUTED BY HASH(k1) BUCKETS 1 PROPERTIES ( "enable_unique_key_merge_on_write" = "true", "disable_auto_compaction" = "true", "replication_num" = "1"); ``` Do schema change: ``` alter table test_cloud_mow_new_tablet_compaction modify column c1 varchar(100); ``` load and schema change concurrent execution: ``` insert into test_cloud_mow_new_tablet_compaction values(1,99,99,99); ``` Result is incorrect: ``` mysql> select * from test_cloud_mow_new_tablet_compaction; +------+------+------+------+ | k1 | c1 | c2 | c3 | +------+------+------+------+ | 1 | \N | 99 | 99 | +------+------+------+------+ rows in set (0.08 sec) ``` ### What You Expected? Result is correct:`1,99,99,99` ### How to Reproduce? _No response_ ### Anything Else? _No response_ ### Are you willing to submit PR? - [x] 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