Toms1999 opened a new issue, #34064: URL: https://github.com/apache/doris/issues/34064
### 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.1.2 ### What's Wrong? CREATE TABLE `dt` ( `id` int(11) NOT NULL, `name` varchar(50) NULL, `score` int(11) NULL ) ENGINE=OLAP DUPLICATE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 1 PROPERTIES ( "replication_num" = "1" ); set group_commit = sync_mode; begin; insert into dt values(1, 'Bob', 90), (2, 'Alice', 99); ### What You Expected? result ### How to Reproduce? CREATE TABLE `dt` ( `id` int(11) NOT NULL, `name` varchar(50) NULL, `score` int(11) NULL ) ENGINE=OLAP DUPLICATE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 1 PROPERTIES ( "replication_num" = "1" ); set group_commit = sync_mode; begin; insert into dt values(1, 'Bob', 90), (2, 'Alice', 99); ### Anything Else? <img width="636" alt="3a3873cfbac3c22b3b669320645426af" src="https://github.com/apache/doris/assets/94617906/1e11e32b-b032-429e-a5fb-2b641ce1a935"> ### 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: [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]
