li-ang-666 opened a new issue, #29875: URL: https://github.com/apache/doris/issues/29875
### 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 1.2.7 ### What's Wrong? in strict_mode, I write ‘a’ into a INT type column, it doesn't be intercepted drop table if exists agg_test; create table if not exists agg_test(id int,name text REPLACE_IF_NOT_NULL) AGGREGATE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 1 PROPERTIES ( "replication_num" = "1", "in_memory" = "false" ); select * from agg_test; SET enable_insert_strict = true; insert into agg_test(id,name)values('a','b'); select * from agg_test; <img width="959" alt="image" src="https://github.com/apache/doris/assets/71430517/ecce0b47-d8d1-4f6a-bbd2-2a9bc5d0f756"> ### What You Expected? it shouldn't write success ### How to Reproduce? drop table if exists agg_test; create table if not exists agg_test(id int,name text REPLACE_IF_NOT_NULL) AGGREGATE KEY(`id`) DISTRIBUTED BY HASH(`id`) BUCKETS 1 PROPERTIES ( "replication_num" = "1", "in_memory" = "false" ); select * from agg_test; SET enable_insert_strict = true; insert into agg_test(id,name)values('a','b'); select * from agg_test; ### 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