shawn0762 opened a new issue, #23606: URL: https://github.com/apache/doris/issues/23606
### 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 doris-1.2.6-rc03-Unknown ### What's Wrong? Passing a decimalv3 column to function collect_list cause all BEs crashed. And one of BEs logs some information: `F0829 10:43:51.419387 562 column_string.h:66] string column length is too large: total_length=18446603666933678141 ,element_number=9` ### What You Expected? no ### How to Reproduce? ` CREATE TABLE `decimalv3_test` ( `d` date NULL, `pid` int(11) NULL, `money` decimalv3(8, 2) REPLACE_IF_NOT_NULL NULL ) ENGINE=OLAP AGGREGATE KEY(`d`, `pid`) COMMENT 'OLAP' DISTRIBUTED BY HASH(`d`) BUCKETS 3 PROPERTIES ( "replication_allocation" = "tag.location.default: 3", "in_memory" = "false", "storage_format" = "V2", "disable_auto_compaction" = "false" ); insert into decimalv3_test values ('2023-08-01', 1, 7.6), ('2023-08-01', 2, 99.89), ('2023-08-02', 1, 79.6), ('2023-08-02', 3, 67.89); select d, collect_list(pid), collect_list(money) from decimalv3_test group by d ` ### 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