Skip to content

TiDB and MySQL behave differently when union quote(cast('xxxx' as char)) and string literal #56587

@r33s3n6

Description

@r33s3n6

1. Minimal reproduce step (Required)

select quote(cast('abcdefg' as char)) union all
select '1' where 0<>0;

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

mysql> select quote(cast('abcdefg' as char)) union all
    -> select '1' where 0<>0;
+--------------------------------+
| quote(cast('abcdefg' as char)) |
+--------------------------------+
| 'abcdefg'                      |
+--------------------------------+
1 row in set (0.00 sec)

3. What did you see instead (Required)

mysql> select quote(cast('abcdefg' as char)) union all
    -> select '1' where 0<>0;
+--------------------------------+
| quote(cast('abcdefg' as char)) |
+--------------------------------+
| '                              |
+--------------------------------+
1 row in set, 1 warning (0.00 sec)
mysql> show warnings;
+---------+------+----------------------------------------+
| Level   | Code | Message                                |
+---------+------+----------------------------------------+
| Warning | 1406 | Data Too Long, field len 1, data len 9 |
+---------+------+----------------------------------------+
1 row in set (0.00 sec)

4. What is your TiDB version? (Required)

Release Version: v8.4.0-alpha-370-gf773b6eeb4
Edition: Community
Git Commit Hash: f773b6eeb4593a3e2c998c265f491a016570a426
Git Branch: HEAD
UTC Build Time: 2024-10-11 02:08:09
GoVersion: go1.23.2
Race Enabled: false
Check Table Before Drop: false
Store: tikv

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions