felixwluo opened a new issue, #36955: URL: https://github.com/apache/doris/issues/36955
### 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? After executing a query on the Doris UI, the result returned is incorrect ### What You Expected? Displays the correct results ### How to Reproduce? 1、create database test; 2、CREATE TABLE IF NOT EXISTS test_table ( `k1` largeint(40) NOT NULL , `k2` bigint(20) NOT NULL ) DISTRIBUTED BY HASH(`k1`) BUCKETS 1 PROPERTIES ( "replication_allocation" = "tag.location.default: 1" ); 3、insert into test.test_table values(1,400000000000000001); 4、Executing SQL on the Doris UI, "select k2 from test.test_table", the result displayed is 40000000000000000000, but the correct result should be 400000000000000001 , I see in the browser that the result returned by the FE interface is 400000000000000001, so it should be a front-end display problem. ### 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: [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]
