You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/r/subselect_innodb.result
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -615,3 +615,17 @@ id select_type table type possible_keys key key_len ref rows filtered Extra
615
615
Warnings:
616
616
Note 1003 select `test`.`t1`.`f1` AS `f1`,`test`.`t2`.`f2` AS `f2`,`test`.`t3`.`f3` AS `f3` from `test`.`t1` join `test`.`t2` semi join (`test`.`t4`) join `test`.`t3` where `test`.`t4`.`f4` = 1 and `test`.`t1`.`f1` >= `test`.`t2`.`f2`
617
617
DROP TABLE t1,t2,t3,t4;
618
+
#
619
+
# MDEV-23535: SIGSEGV, SIGABRT and SIGILL in typeinfo for Item_func_set_collation (on optimized builds)
620
+
#
621
+
set @save_character_set_connection=@@character_set_connection;
622
+
set character_set_connection='utf8';
623
+
CREATE TABLE t1(a DATETIME, b VARCHAR(50)) ENGINE=INNODB;
624
+
INSERT INTO t1 VALUES ('2019-03-10 02:55:05', '2019-03-10 02:55:05');
625
+
CREATE TABLE t2(a VARCHAR(50)) ENGINE=INNODB;
626
+
INSERT INTO t2 VALUES ('2019-03-10 02:55:05');
627
+
SELECT * FROM t1 WHERE (SELECT 1,CONCAT(a) FROM t1) = (SELECT 1,CONCAT(a) FROM t2);
628
+
a b
629
+
2019-03-10 02:55:05 2019-03-10 02:55:05
630
+
DROP TABLE t1,t2;
631
+
set character_set_connection=@save_character_set_connection;
0 commit comments