Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] an error is reported when SQL is executed on the Doris UI #36955

Open
2 of 3 tasks
felixwluo opened this issue Jun 27, 2024 · 0 comments
Open
2 of 3 tasks

[Bug] an error is reported when SQL is executed on the Doris UI #36955

felixwluo opened this issue Jun 27, 2024 · 0 comments

Comments

@felixwluo
Copy link
Contributor

Search before asking

  • I had searched in the issues 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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant