Details
Description
Hi everyone,
On the latest trunk version (0308de9), I could observe a bug, as demonstrated by the following test case:
CREATE TABLE t0(c0 INT);
|
INSERT INTO t0 VALUES (1);
|
SELECT (c0 > (NULL <=> 0)) IS NULL FROM t0; -- expected: 0, actual: 1
|
The expression seems to work correctly when it is used in a WHERE condition:
SELECT * FROM t0 WHERE (c0 > (NULL <=> 0)) IS NULL; -- no row is fetched
|
Attachments
Issue Links
- relates to
-
MDEV-21034 GREATEST() and LEAST() malfunction for NULL
- Closed
-
MDEV-21065 UNIQUE constraint causes a query with string comparison to omit a row in the result set
- Closed
-
MDEV-34004 Unexpected result when using equal operator <=>
- Open