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

comparing with round() in WHERE predicate may produce unexpected result #57586

Open
r33s3n6 opened this issue Nov 21, 2024 · 0 comments
Open

Comments

@r33s3n6
Copy link

r33s3n6 commented Nov 21, 2024

1. Minimal reproduce step (Required)

create table t1 (c1 double);
insert into t1 (c1) values (-2147483646.5);

select  
  c1,
  round(c1),
  c1 > round(c1)
from 
  t1
where c1 > round(c1);

2. What did you expect to see? (Required)

when the third column is 0, it should not appear:
in TiDB with unistore:

mysql> select  
    ->   c1,
    ->   round(c1),
    ->   c1 > round(c1)
    -> from 
    ->   t1
    -> where c1 > round(c1);
Empty set (0.00 sec)

3. What did you see instead (Required)

in TiDB with TiKV

mysql> select  
    ->   c1,
    ->   round(c1),
    ->   c1 > round(c1)
    -> from 
    ->   t1
    -> where c1 > round(c1);
+---------------+-------------+----------------+
| c1            | round(c1)   | c1 > round(c1) |
+---------------+-------------+----------------+
| -2147483646.5 | -2147483646 |              0 |
+---------------+-------------+----------------+
1 row in set (0.00 sec)

4. What is your TiDB version? (Required)

Release Version: v8.5.0-alpha-184-g1c059a1216
Edition: Community
Git Commit Hash: 1c059a1216db711e2cb56ea9f3d1ad8c23db6327
Git Branch: HEAD
UTC Build Time: 2024-11-21 04:56:22
GoVersion: go1.23.3
Race Enabled: false
Check Table Before Drop: false
Store: tikv

topology:
distributed.yaml:

global:
  user: "tidb"
  ssh_port: 22
  deploy_dir: "/tidb-deploy"
  data_dir: "/tidb-data"

tidb_servers:
  - host: 10.0.2.81

pd_servers:
  - host: 10.0.2.82

tikv_servers:
  - host: 10.0.2.83

about us

We are the BASS team from the School of Cyber Science and Technology at Beihang University. Our main focus is on system software security, operating systems, and program analysis research, as well as the development of automated program testing frameworks for detecting software defects. Using our self-developed database vulnerability testing tool, we have identified the above-mentioned vulnerabilities in TiDB that may lead to database logic error.

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

No branches or pull requests

2 participants