jgq2008303393 opened a new issue, #20468:
URL: https://github.com/apache/doris/issues/20468

   ### 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.4
   
   ### What's Wrong?
   
   在Doris中通过如下命令,建表并写入样例数据
   CREATE TABLE test.tt2(
   id BIGINT COMMENT "用户ID",
   name VARCHAR(20) COMMENT "用户姓名",
   age SMALLINT COMMENT "用户年龄",
   address VARCHAR(100) COMMENT "用户所在地区",
   date DATETIME COMMENT "数据导入时间"
   )
   DUPLICATE KEY (id)
   DISTRIBUTED BY HASH (id) BUCKETS 3
   PROPERTIES("replication_num" = "1");
   
   INSERT INTO test.tt2 VALUES 
   (1022222222222222221,"kkk",18,"beijing","2022-06-28 00:00:00"),
   (1022222222222222222,"kkk",18,"beijing","2022-06-28 00:00:00"),
   (1022222222222222223,"kkk",18,"beijing","2022-06-28 00:00:00"),
   (1022222222222222224,"kkk",18,"beijing","2022-06-28 00:00:00"),
   (1022222222222222225,"kkk",18,"beijing","2022-06-28 00:00:00");
   
   通过mysql client结果正常,通过doris playground执行时,长整型字段类型显示异常:
   
![image](https://github.com/apache/doris/assets/657140/f2a7eac6-5202-4cb8-828f-87bc8f4985ed)
   
   
   ### What You Expected?
   
   应该显示完整的id字段值,即1022222222222222221~ 1022222222222222225。
   
   ### How to Reproduce?
   
   _No response_
   
   ### 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

Reply via email to