Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.0(EOL), 10.1(EOL)
Description
DROP TABLE IF EXISTS t1;
|
CREATE TABLE t1 (a VARBINARY(10));
|
INSERT INTO t1 VALUES ('a'),('A');
|
EXPLAIN EXTENDED SELECT * FROM t1 WHERE a>=_utf8'a' COLLATE utf8_general_ci AND a='A';
|
SHOW WARNINGS;
|
returns
+-------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| Note | 1003 | select `test`.`t1`.`a` AS `a` from `test`.`t1` where ((`test`.`t1`.`a` = 'A') and (convert(`test`.`t1`.`a` using utf8) >= <cache>((_utf8'a' collate utf8_general_ci)))) |
|
+-------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
The equality a='A' was not propagated into >=. It safely could.
Attachments
Issue Links
- blocks
-
MDEV-8728 Fix a number of problems in equal field and equal expression propagation
-
- Closed
-
Activity
Description |
{code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a VARBINARY(10)); INSERT INTO t1 VALUES ('a'),('A'); EXPLAIN EXTENDED SELECT * FROM t1 WHERE a>=_utf8'a' COLLATE utf8_swedish_ci AND a='A'; SHOW WARNINGS; {code} returns {noformat} +-------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Note | 1003 | select `test`.`t1`.`a` AS `a` from `test`.`t1` where ((`test`.`t1`.`a` = 'A') and (convert(`test`.`t1`.`a` using utf8) >= <cache>((_utf8'a' collate utf8_swedish_ci)))) | +-------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ {noformat} The equality a='A' was not propagated into >=. It safely could. |
{code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a VARBINARY(10)); INSERT INTO t1 VALUES ('a'),('A'); EXPLAIN EXTENDED SELECT * FROM t1 WHERE a>=_utf8'a' COLLATE utf8_general_ci AND a='A'; SHOW WARNINGS; {code} returns {noformat} +-------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Note | 1003 | select `test`.`t1`.`a` AS `a` from `test`.`t1` where ((`test`.`t1`.`a` = 'A') and (convert(`test`.`t1`.`a` using utf8) >= <cache>((_utf8'a' collate utf8_general_ci)))) | +-------+------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ {noformat} The equality a='A' was not propagated into >=. It safely could. |
Summary | Equal field propagation is not applied for WHERE varbinary_column>=_utf8'a' COLLATE utf8_swedish_ci AND varbinary_column='A'; | Equal field propagation is not applied for WHERE varbinary_column>=_utf8'a' COLLATE utf8_general_ci AND varbinary_column='A'; |
Fix Version/s | 10.1.8 [ 19605 ] | |
Fix Version/s | 10.1 [ 16100 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Labels | propagation |
Workflow | MariaDB v3 [ 71655 ] | MariaDB v4 [ 149622 ] |