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
47
48
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
48
49
INSERT INTO t1 VALUES(1);
49
51
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));
50
52
INSERT INTO t1 VALUES(2),(3);
51
54
SELECT a FROM t1 WHERE a IN(1, (SELECT IF(1=0,1,2/0)));