36
36
# Bug #6080: Error message for a field with a display width that is too long
39
39
create table t1 (a int(256));
41
41
create table t1 (a varchar(66000));
44
44
# Bug #27513: mysql 5.0.x + NULL pointer DoS
48
47
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
49
48
INSERT INTO t1 VALUES(1);
51
49
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
52
50
INSERT INTO t1 VALUES(2),(3);
54
51
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));