Bug #117493 | Anti-join incorrectly handles ASCII control characters | ||
---|---|---|---|
Submitted: | 17 Feb 15:41 | Modified: | 17 Feb 15:54 |
Reporter: | jinhui lai | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server: Optimizer | Severity: | S3 (Non-critical) |
Version: | 9.1.0 | OS: | Ubuntu (22.04) |
Assigned to: | CPU Architecture: | x86 |
[17 Feb 15:41]
jinhui lai
[17 Feb 15:54]
MySQL Verification Team
Hi Mr. lai, We tried but we could not repeat your test case. These are the results that we get: mysql> SELECT t1.c0 FROM t1 WHERE NOT EXISTS (SELECT 1 FROM t0 WHERE t1.c0 < t0.c0); +------+ | c0 | +------+ | e | +------+ 1 row in set (0.00 sec) mysql> mysql> SELECT t1.c0 FROM t1 INNER JOIN t0 ON t1.c0 < t0.c0; +------+ | c0 | +------+ | a | | a | | a | +------+ 3 rows in set (0.00 sec) mysql> mysql> SELECT t1.c0 FROM t1 LEFT JOIN t0 ON t1.c0 < t0.c0; +------+ | c0 | +------+ | a | | a | | a | | e | +------+ 4 rows in set (0.00 sec) ----------------------------- The problem is that you are not specifying Unicode characters as per utfmb4 standard. Can't repeat.