Details
Description
Reduced test case (reproducable only with first solution of MDEV-29662):
CREATE TABLE LTDX (
|
USERNAME varchar(12) NOT NULL,
|
SRTF2 int(11) NOT NULL);
|
CREATE VIEW V_LTDX AS
|
select T0001.USERNAME AS USERNAME
|
from LTDX T0001 where (T0001.SRTF2 = 0);
|
|
set @a1="1";
|
set @a2="1";
|
|
prepare stmt from
|
"select username from V_LTDX where username in ( ? , ? )";
|
|
execute stmt using @a1,@a2;
|
|
deallocate prepare stmt;
|
|
DROP VIEW V_LTDX;
|
DROP TABLE LTDX;
|
caused by 5027cb2b74a0b37cbdd3ad190cb8b2bf738c0cde
Attachments
Issue Links
- is caused by
-
MDEV-29662 same values in `IN` set vs equal comparison produces the different performance
- Closed
- relates to
-
MDEV-17869 AddressSanitizer: use-after-poison in Item_change_list::rollback_item_tree_changes
- Closed