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

Unexpected BETWEEN Behavior When Using NULL in TiDB #60369

Open
aspiringOrange opened this issue Apr 2, 2025 · 1 comment
Open

Unexpected BETWEEN Behavior When Using NULL in TiDB #60369

aspiringOrange opened this issue Apr 2, 2025 · 1 comment
Labels
type/bug The issue is confirmed as a bug.

Comments

@aspiringOrange
Copy link

Bug Report

1. Minimal reproduce step (Required)

The following SQL statements create a table, insert sample data, and execute a query that demonstrates unexpected behavior:

CREATE TABLE `t1` (
  `c1` int
);

INSERT INTO `t1` VALUES (1);

select  
  ref_1.c1 as c_1, 
  ((ref_1.c1) between (10) and (NULL)) as c_2
from 
    t1 as ref_1

Unexpected Output:

+------+------+
| c_1  | c_2  |
+------+------+
|    1 |    0 |
+------+------+
1 row in set (0.01 sec)

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

According to SQL standard behavior:

The BETWEEN operator should return NULL when one of the boundary values is NULL.

The expected output for 1 BETWEEN 10 AND NULL should be NULL, not 0.

3. What did you see instead (Required)

The query returned 0 instead of NULL.

4. What is your TiDB version? (Required)

8.0.11-TiDB
master b6141ec

GoVersion: go1.23.4
Race Enabled: false
Check Table Before Drop: false
Store: unistore |

@aspiringOrange aspiringOrange added the type/bug The issue is confirmed as a bug. label Apr 2, 2025
@hawkingrei
Copy link
Member

I try it in the mysql, it is the same as tidb's result.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/bug The issue is confirmed as a bug.
Projects
None yet
Development

No branches or pull requests

2 participants